Beginning Python Programming
Makzan, 2020 April.
# Defining variables
a = 1
b = 2
c = a + b
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.