Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 17.09.2023
- class Example:
- @classmethod
- def do_something(cls):
- print('doing something')
- '''
- classmethod allows you to create methods
- that can be called without creating class instance
- '''
- Example.do_something() # doing something
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement