Skip to content

0006 - Python Coding convention

[4] Naming for functions, objects, modules

Should read: .NET Framework naming guidances

a) For objects: use upper case with _. E.g: REQUIRED_COLUMNS instead of RequiredColumns

b) For class: use Camel syntax. E.g: ResponseAdjustment

c) For function: use snake syntax. E.g: def get_element