Answers for "find multiple of a number python"

1

find two number in python

a = int(input("enter first number: "))
b = int(input("enter second number: "))
sum = a + b.
print("sum:", sum)
Posted by: Guest on July-28-2021
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 "find multiple of a number python"

Python Answers by Framework

Browse Popular Code Answers by Language