Difference between …
 
Notifications
Clear all

Difference between class method and static method in python.

1 Posts
2 Users
0 Likes
176 Views
0
Topic starter

Difference between class method and static method in python.

1 Answer
0

Class methods don’t need a class instance. They can’t access the instance ( self ) but they have access to the class itself via cls . Static methods don’t have access to cls or self .

Share: