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, age): self.name = name self.age = age def celebrate_birthday(self): self.age += 1 print(f"Happy birthday! You are now {self.age}") p1 = Person("Linus", 25) p1.celebrate_birthday() p1.celebrate_birthday()
Happy birthday! You are now 26
Happy birthday! You are now 27