Write a Python function to Find HCF of two numbers
Topic: Write a Python function to Find HCF of two numbers
Solution
def hcf(x, y): if x > y: smaller = y else: smaller = x for i in range(1,smaller + 1): if((x % i == 0) and (y % i == 0)): hcf = i return hcf
List all Python Programs