Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
# 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]