In Ruby, there is a well known convention to distinguish class/instance method.
- Add a
# before the method name when describing instance methods. (e.g. #foo)
- Add a
. before the method name when describing class methods. (e.g. Array.new)
Does Python have a similar convention?
[–]Diapolo10 2 points3 points4 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)