Write a python function to find HCf or GCD and return the value
Topic: Write a python function to find HCf or GCD and return the value
Solution
def compute_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