Python Naming Conventions

The following is a quick summary of Python naming conventions. For further details view PEP* Style Guide For Python.

Packages

lowercasewordswithoutunderscores

Modules

lower_case_words_separated_by_underscores

Functions

lower_case_words_separated_by_underscores

Variables

Global Variables

UPPER_CASE_SEPARATED_BY_UNDERSCORES

Local Varaibles

lower_case_words_separated_by_underscores

Classes

CamelCase

Exceptions

CamelCaseError