Python Best Practices for Code Quality
Python Best Practices for Code Quality, by Reindert-Jan Ekker, is another course in the Core Python learning path in PluralSight.
This one cover PEP8 - which I thought was silly, but after programming a while in Python I actually like how the code looks - , generating documentation from docstrings, and type hinting.
The most interesting bit was the type hinting, as I am a big fan of static typing (which I feel saves typing, btw, as the compiler can tell what you can be passing).
Comments