how to find multiples of 3 and 5 in a given range using python code example
Example: how to find the multiples of a number in python
def multiples(m, count):
for i in range(count):
print(i*m)
def multiples(m, count):
for i in range(count):
print(i*m)