Advertisement
alaex777

Python classmethod

Sep 17th, 2023
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | Source Code | 0 0
  1. # 17.09.2023
  2.  
  3. class Example:
  4.     @classmethod
  5.     def do_something(cls):
  6.         print('doing something')
  7.  
  8. '''
  9. classmethod allows you to create methods
  10. that can be called without creating class instance
  11. '''
  12.  
  13. Example.do_something()  # doing something
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement