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
class Person: def __init__(self, name): self.name = name def printname(self): print(self.name) p1 = Person("Tobias") p2 = Person("Linus") p1.printname() p2.printname()
Tobias
Linus