DEV Community

Discussion on: Data Types in Python

 
michaelcurrin profile image
Michael Currin • Edited

I also recommend using a tool like pylint and flake8 ans black to give warnings and automated fixes for code style.

They are going to default to a prevalent standard to avoid debate between coders on what is right, as the tools enforce a standard for you.

You can also override with a config if you want 100 characters long instead of 79 or want to change how code is wrapped or variables are named, if you want to deviate from the style.

github.com/MichaelCurrin/py-projec...