My Tech Notes
Showing posts with label
class method
.
Show all posts
Showing posts with label
class method
.
Show all posts
Python: class method vs static method
›
class A: def object_m(self,x): print "executing object_m(%s,%s)"%(self,x) @classmethod def class_m(cls,x): ...
›
Home
View web version