PEP 8, which stands for Python Enhancement Proposal 8, is a style guide for Python code that provides conventions for writing readable and consistent code. The main philosophy behind PEP 8 is that code is read much more often than it’s written. Hence, readability counts.
In quantitative roles, where accuracy and efficiency are both very important, it’s equally important to ensure that your code can be easily understood, maintained, and debugged. One day, you’ll leave the firm and a new employee needs to understand the code that you left behind. This is where following a style guide like PEP 8 comes into play.