3 Answers
+ 2
These and other arithmetic operations are documented here: https://docs.python.org/3.6/library/stdtypes.html#numeric-types-int-float-complex
+ 1
** is power operation
2**3 means 2*2*2
// is whole number division
8//3 is 2
in python the sign of true division is /
8/3 is 2.66666
% is modulo, it returns the remainder of the division.
8%7 is 1, because 8//7is 1 and remains 1.
better example
10%7 is 3 (10//7 is 1, remainder is 3)
0
Ooh, okay, thank you!



