I have written a function in python that prints multiples of 7 between 0 and 100. The output is okay but am getting None
at the end of the output. How do I get rid of it and what triggers it?
def multiples(x):
for n in range(100):
n = n*x
if n <= 100:
print(n)
print(multiples(7))