This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/Python/OOP3/task3.py
2023-07-16 13:23:25 +00:00

10 lines
139 B
Python

class SomeClass(object):
@staticmethod
def hello():
print("Hello world")
SomeClass.hello()
obj = SomeClass()
obj.hello()