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: species = "Human" # Class property def __init__(self, name): self.name = name # Instance property p1 = Person("Emil") p2 = Person("Tobias") print(p1.name) print(p2.name) print(p1.species) print(p2.species)
Emil
Tobias
Human
Human