how do i get the multiple of a number in 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)