Python-Specific
Learn about good programming practices for Python.
We'll cover the following...
General
-
Follow the PEP-8 style guide. Use pep8 and autopep8 tools.
-
List imported modules at the beginning of a file. List them in the lexicographic order.
Press + to interact
#badimport gzipimport sysfrom collections import defaultdictimport iofrom contextlib import contextmanagerimport functoolsfrom urllib.request import urlopen#goodimport functoolsimport gzipimport ioimport sysfrom collections import defaultdictfrom contextlib import contextmanagerfrom urllib.request import urlopen
-
Use operators
is
andis_not
for comparing with singletons (likeNone
) only. The only exceptions are boolean constantsTrue
andFalse
. -
Use falsy/truthy semantics. Falsy values include
None
,False
, zeroes0
,0.0
, and0j
...