How could I go about finding the division remainder of a number in Python?
For example: If the number is 26 and divided number is 7, then the division remainder
Modulo would be the correct answer, but if you're doing it manually this should work.
num = input("Enter a number: ") div = input("Enter a divisor: ") while num >= div: num -= div print num