Beginning Python Programming
Makzan, 2020 April.
# Defining variables a = 1 b = 2c = a + b
PEP 8: 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.
and as assert break continue class def del elif else except False finally for from global if import in is lambda None not or nonlocal pass raise return True try while with yield
int str list set ... # And all type names, # function names, module names etc.
By makzan