挑战Python题解-017

17.给你两个正整数a,b, 输出它们公约数的个数。

L = []
for i in range(1,min(a,b)):
    if a%i ==0 and b%i ==0:
            L.append(L)
print len(L)

你可能感兴趣的:(挑战Python题解-017)