Comp sci: Python: class methods
Self-tutoring about Python coding: the tutor mentions an observation about Python class methods. A Python class method can be called by referencing its containing class name rather than an instance. Such a method might be called via classname.the_method(). However, it’s …