Python: Define a static function in a class

0 Comments

Most functions in a class will refer to a "self" instance.

If you want a static function, you'll have to add the @staticmethod decorator.

1.class Something(object):
2.  @staticmethod
3.  def get_by_name(name):
4.    return "Hello world"

[ Source ]

 
Copyright © Twig's Tech Tips
Theme by BloggerThemes & TopWPThemes Sponsored by iBlogtoBlog