Answers for "how to find gcd and gcf in python 3"

3

python how to find gcd

>>> import math
>>> math.gcd(9, 12)
3
Posted by: Guest on September-06-2021
0

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

Python Answers by Framework

Browse Popular Code Answers by Language