static class methods in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

static class methods in python?

I know python have instance methods only , but i was coding and i came across a problem so , i was trying out random solutions . And i tried this code just to see what would happen . ################################ class person(): firs_name = "jay" last_name = "aljoe" def info(): print(person.firs_name) print(person.last_name) person.info() ########################### And it worked somehow . Now im confused as f . Does python have class methods ?

26th Dec 2017, 5:36 AM
jay
1 Answer
+ 5
Yes, python does have static and class methods. You can designate them by using the decorators: @classmethod and @staticmethod an instance method should have self as its first parameter a class method will need cls passed as its first parameter a static method does not need self or cls as a first parameter https://realpython.com/blog/python/instance-class-and-static-methods-demystified/
26th Dec 2017, 6:19 AM
ChaoticDawg
ChaoticDawg - avatar