Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python function to calculate LCM of 2 numbers.

# defining a function to calculate LCM  
def calculate_lcm(x, y):  
    # selecting the greater 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    
  
# taking input from users  
num1 = int(input("Enter first number: "))  
num2 = int(input("Enter second number: "))  
# printing the result for the users  
print("The L.C.M. of", num1,"and", num2,"is", calculate_lcm(num1, num2))
Comment

how to find LCM of 2 numbers in python

# Every line is written with precision
# Go trough every line.
# line it self will explain most of the doughts.

num_first = int(input("Enter a number: ")) # taking firsr number form user
num_second = int(input("Enter second number: ")) # taking second number form user

maxnum = max(num_first,num_second) finding maxium of the inputed numbers

while(True):
    if(maxnum%num_first == 0 and maxnum%num_second == 0):
        break # if a common number divides both then it will break the 
        #loop else it will go on until it find the number
    maxnum = maxnum + 1

print(f"LCM of {a} and {b} is {maxnum}")

// Thanks for reading....
Comment

PREVIOUS NEXT
Code Example
Python :: print input in python 
Python :: python i++ 
Python :: find next multiple of 5 python 
Python :: blender show python version 
Python :: python pandas how to get all of the columns names 
Python :: os.chdir go back 
Python :: render() in django 
Python :: install json on python 
Python :: inser elemts into a set in python 
Python :: Insurance codechef solution 
Python :: higlight words in python 
Python :: installation of uvicorn for fastapi 
Python :: import class from another file python 
Python :: tkinter treeview clear 
Python :: serialize keras model 
Python :: how to eliminate duplicate values in list python 
Python :: pandas reset index from 0 
Python :: django fieldset 
Python :: pandas apply check for string length in column 
Python :: reset all weights keras 
Python :: regex_2/_regex.c:50:10: fatal error: Python.h: No such file or directory 
Python :: typing pandas dataframe 
Python :: add python to path 
Python :: py2exe no console 
Python :: form action in django 
Python :: how to encode emoji to text in python 
Python :: how to rename files python 
Python :: check status code urllib open 
Python :: input two numbers in python in a single line 
Python :: python discord embed link 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =