I'm teaching myself Python and my most recent lesson was that Python is not Java, and so I've just spent a while turning all my Class
methods into functions.
I now realise that I don't need to use Class
methods for what I would done with static
methods in Java, but now I'm not sure when I would use them. All the advice I can find
…