Get your own Python server Result Size: 625 x 565
x
 
# Empty list
x = []
# List with initial values
y = [1, 2, 3, 4, 5]
# List with mixed types
z = [1, "hello", 3.14, True]
print(x)
print(y)
print(z)
[]
[1, 2, 3, 4, 5]
[1, 'hello', 3.14, True]