print () - built-in function that displays input values as text in the output
The pythonic way to name variables is to use all lowercase letters and underscores to separate words. Example: my_height = 58 my_lat = 40 my_long = 105
Arithmetic Operators
+ Addition
- Subtraction
* Multiplication
/ Division
// Divides and rounds down to the nearest integer
% Mod (the remainder after dividing)
** Exponentiation (note that ^ does not do this operation, as you might have seen in other languages)