Write a script that prints the multiples of 7 between 0 and 100. Print one multiple per line and avoid printing any numbers that aren't multiples of 7. Remember that 0 is also a multiple of 7.
def multiple(start, end):
while start <= end:
if start % 7 == 0:
print (start)
start = start + 1
print(multiple(0,100))