find hcf in python code example
Example 1: python code for gcd of two numbers
# Function to find HCF the Using Euclidian algorithm
def compute_hcf(x, y):
while(y):
x, y = y, x % y
return x
hcf = compute_hcf(300, 400)
print("The HCF is", hcf)
Example 2: python find HCF
#pip3 install HCF
import HCF
s=HCF.HCF(45,50)
print(s.gcd)