Python static methods - how to call a method from another method -
When I have regular methods to call another method in class, I have to do this
<But when I have static methods I
Can not write self.dosomethingelse ()
because there is no example I want to call a static method from another static method of the same class, how do I do it in Python?
Edit: Is there a mess, okay, I have edited this question back on the original question. I already have another question which is in the comments of Peter Hansen. If you think I should open another question for an answer already, please let me know.
Class.method
should work.
Comments
Post a Comment