## // Returns the integer value of the quotient
eg 906 / 100 = 9.06
906 // 100 = 9
print(7//3) # Returns the Quotient
print(7/3) # Returns Division
# in python == means that is a comparisson operator meaning it compares if one
# variable equals the other. Instead of using one = since that will assign
# a value we use ==