Source Code:
(back to article)
class MyClass: def __init__(self): self.x = 5 self.y = 10 obj = MyClass() print(dir(obj))
Result:
Report an issue