Python Coding Style
I realized I forgot to put this in my other tutorials.
First, what is coding style? It defines how code should be formatted, how to name different code elements, where white space should be in expressions, how code should be documented, etc.
Now you might be wondering, why should I follow a coding style? By following PEP 8, Python’s official coding style, you will make your code more readable, both for yourself, and other Python developers.
When code is easy to read, it makes the code easier to understand, and easier to debug.
If you work with other programmers, and you don’t follow a decent coding style, they will be at your door with pitch forks and torches