## // Returns the integer value of the quotient
eg 906 / 100 = 9.06
906 // 100 = 9
# 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
print(7//3) # Returns the Quotient
print(7/3) # Returns Division
#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