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
age = 36 name = "John" txt = "His name is {1}. {1} is {0} years old." print(txt.format(age, name))
His name is John. John is 36 years old.