n
数値の範囲が数値の因数であるかどうかを再帰的にチェックする単純なPythonスクリプトがありx
ます。数値のいずれかが要因でない場合は、を返します。False
それ以外の場合は、n==1
戻りたいときにTrue
。しかし、私は戻ってき続けNoneType
、これを修正する方法についての提案をいただければ幸いです。
#Function
def recursive_factor_test(x, n):
if n==1:
return True
else:
if x % n == 0:
#print "passed {}".format(n)
recursive_factor_test(x,n-1)
else:
return False
#Example Expecting False
print recursive_factor_test(5041,7)
>>False
#Example Expecting True
print recursive_factor_test(5040,7)
>>None
type(recursive_factor_test(5040,7))
>>NoneType