xxxxxxxxxx
# the % symbol gives us the remainder of a quotient
# examples
>>> 23 % 5 # should be 3
3
>>> 25 % 5 # no remainder, so should be 0
0
xxxxxxxxxx
#Performs floor-division on the values on either side. Then assigns it to the expression on the left.
>>> a=6
>>> a//=3
>>> print(a)
2