Python-Specific

Learn about good programming practices for Python.

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
#bad
import gzip
import sys
from collections import defaultdict
import io
from contextlib import contextmanager
import functools
from urllib.request import urlopen
#good
import functools
import gzip
import io
import sys
from collections import defaultdict
from contextlib import contextmanager
from urllib.request import urlopen
  • Use operators is and is_not for comparing with singletons (like None) only. The only exceptions are boolean constants True and False.

  • Use falsy/truthy semantics. Falsy values include None, False, zeroes 0, 0.0, and 0j ...