Coding standards (style guide) for Python programs?


The coding standards i.e., the style guide for Python are provided by a document called PEP8. The PEP8 is Python Enhancement Proposal 8. It is a document that provides coding conventions for the Python code.

Here’s the style guide −

Naming Conventions

The following are the currently recommended naming standard.

Avoid These Names

Never use the characters ‘l’ (lowercase letter el), ‘O’ (uppercase letter oh), or ‘I’ (uppercase letter eye) as single character variable names.

Package and Module Names

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

Name of Class

Class names should normally use the CapWords convention. The naming convention for functions may be used instead in cases where the interface is documented and used primarily as a callable.

Exception Names

The class naming convention applies here. However, you should use the suffix “Error” on your exception names.

Function and Variable Names

Function names should be lowercase, with words separated by underscores as necessary to improve readability.

Variable names follow the same convention as function names.

Function and Method Arguments

Always use self for the first argument to instance methods.

Always use cls for the first argument to class methods.

Method Names and Instance Variables

Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability.

Use one leading underscore only for non-public methods and instance variables.

To avoid name clashes with subclasses, use two leading underscores to invoke Python’s name mangling rules.

Constants

Constants are usually defined on a module level and written in all capital letters with underscores separating words.

Indentation

The guideline suggests using 4 spaces per indentation level.

Tabs or Spaces

Tabs should be used solely to remain consistent with code that is already indented with tabs.

Python disallows mixing tabs and spaces for indentation.

Maximum Line Length

Limit all lines to a maximum of 79 characters.

Imports

The import statement, just like any other statement or keyword in Python should be used and added to the code properly following the best practices. Let’s see them one by on −

Multiple Imports

Multiple Imports should usually be on separate lines. For example −

import numpy import pandas import matplotlib

Always on the Top

Imports are always put at the top of the file i.e.

  • After any module comments and docstrings.
  • Before module globals and constants.

For example −

# import the numpy module import numpy

Import Modules in an Order

A good practice is toimport modules in the following order −

  • Standard library modules – e.g. sys, os, getopt, re.
  • Third-party library modules – e.g. ZODB, PIL.Image, etc.
  • Locally developed modules.

Absolute Imports

Absolute imports are recommended, as they are usually more readable and tend to be better performed if the import system is incorrectly configured. For example −

import mypkg.sibling from mypkg import sibling from mypkg.sibling import example

Wildcard imports (from import *) should be avoided

Avoid the Wildcard imports since they make it unclear which names are present in the namespace, confusing both readers and many automated tools.

Whitespace in Expressions and Statements

Avoid unnecessary whitespace as in the following situations −

Between a trailing comma

# Correct: a = (0,)
# Wrong: b = (0, )

Immediately before a comma, semicolon, or colon −

# Correct: if a == 5: print(a, b); a, b = b, a
# Wrong: if a == 5 : print(a , b) ; a , b = b , a

Immediately before the open parenthesis that starts the argument list of a function call

# Correct: demo()
# Wrong: demo ()

Immediately before the open parenthesis that starts an indexing or slicing

# Correct: dct['key'] = lst[index]
# Wrong: dct ['key'] = lst [index]

Comments

  • Comments should be complete sentences.

  • The first word should be capitalized, unless it is an identifier that begins with a lower case letter.

  • Block comments generally consist of one or more paragraphs built out of complete sentences, with each sentence ending in a period.

  • You should use two spaces after a sentence-ending period in multi- sentence comments, except after the final sentence.

Updated on: 20-Sep-2022

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements