Answers for "find lcm of 3 numbers code in pyhton"

0

how to find lcm in python

def find_lcm(x, y):

   # choose the higher number
   if x > y:
       greater = x
   else:
       greater = y

   while(True):
       if((greater % x == 0) and (greater % y == 0)):
           lcm = greater
           break
       greater += 1

   return lcm

num1 = 22 # You can input the numbers if u want
num2 = 56

# call the function
print("L.C.M :", find_lcm(num1, num2))
Posted by: Guest on June-25-2021

Code answers related to "find lcm of 3 numbers code in pyhton"

Python Answers by Framework

Browse Popular Code Answers by Language