Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # class_static_method.py
- class Demo:
- Demo_string = "I Am A Demo"
- @staticmethod
- def demo():
- print Demo.demo_string
- #
- Demo.demo()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement