intermediate python lesson 4: Common Conventions
Class Naming Conventions
yt link
It's nice to adapt to common conventions for writing Python classes:
Use self as the first parameter of method definitions, such as def bake(self, temperature, minutes):, so that you get in the habit of using a consi...
philipdevblog.hashnode.dev2 min read