Advertisement
here2share

# class_static_method.py

Jun 2nd, 2015
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. # class_static_method.py
  2.  
  3. class Demo:
  4.     Demo_string = "I Am A Demo"
  5.  
  6.     @staticmethod
  7.     def demo():
  8.         print Demo.demo_string
  9. #
  10. Demo.demo()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement