001 Python-03-Basics
001 Python-03-Basics
Use snake_case for variable names and PascalCase for class names;
Don't use words that have special meanings or are already defined;
The Complete Python Bootcamp
CONSTANTS IN PYTHON
In Python the values stored in variables have types and not the
name or the variable itself;
The Complete Python Bootcamp
STATIC VS. DYNAMIC TYPING
Statically-typed languages have better
performance at run-time and are faster.
Integers
Floats
Complex numbers
Arithmetic Operators: + - * / // ** %
Assignment Operators: = += -= *= /=
1 Exponentiation (**)