Question 7
What is the remainder when we divide 10,000 by 73? What is the quotient
Code:
# Set a = 10000
a = 10000
# Set b = 73
b = 73
# Get the remainder
remainder = a % b
# Get the quotient
quotient = a // b
# Print Remainder
print("Remainder: ", remainder)
# Print quotient
print("Quotient: ", quotient)
Output:
Remainder: 72Quotient: 136