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, salary): self.name = name self._salary = salary # Protected property p1 = Person("Linus", 50000) print(p1.name) print(p1._salary) # Can access, but shouldn't
Linus
50000