Merge branch 'patch-12' of git://github.com/SandersLin/Python

This commit is contained in:
harshildarji 2018-12-06 21:34:33 +01:00
commit d555a492dc

View File

@ -30,7 +30,9 @@ def count_divisors(n):
for i in xrange(1, int(sqrt(n))+1):
if n%i == 0:
nDivisors += 2
#check if n is perfect square
if n**0.5 == int(n**0.5):
nDivisors -= 1
return nDivisors
tNum = 1
@ -43,4 +45,4 @@ while True:
if count_divisors(tNum) > 500:
break
print(tNum)
print(tNum)