Python Examples

Maximum Line Length

Wrong:

print("This is a really, really, really, really, really, really, really, really, really, really long line of code.")

Right:

print("This is a really long line of code "
      "that has been broken into two shorter lines.")

Imports

Wrong:

import os, sys

Right

# Standard library imports
import os
import sys

# Third-party imports
import numpy as np

# Local imports
import my_module

Exceptions

Wrong:

Right:

String formatting

Wrong:

Right:

Documentation

Wrong:

Right:

Last updated