Answers for "python gcd"

1

gcd python

def gcd(a, b):	# using Euclid's Algorithm
    while b:
        a, b = b, a % b
    return max(a, -a)
Posted by: Guest on October-30-2021
2

python how to find gcd

>>> import math
>>> math.gcd(9, 12)
3
Posted by: Guest on September-06-2021
-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)
Posted by: Guest on November-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language