Answers for "how to find the multiples of a number in python"

3

how to find the multiples of a number in python

def multiples(m, count):
    for i in range(count):
        print(i*m)
Posted by: Guest on May-15-2020

Code answers related to "how to find the multiples of a number in python"

Python Answers by Framework

Browse Popular Code Answers by Language