Thursday, December 5, 2019

Catalin George Festila: Python 3.7.5 : About PEP 8.

Today is December 5, 2019, and this is the reason I wrote about PEP 8. The official webpage can be found at this webpage. PEP 8 recommends using 4 spaces to show indentation and tabs should only be used to maintain consistency in the code. The Python Library is conservative and 79 characters are the maximum required line limit as suggested by PEP 8. The main goal is to avoid line wrapping.

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...