我寫了一個函數isprime(n),如果數字是素數則返回True,否則返回false。 我可以將函數循環定義次數;但我不知道如何迭代,直到找到x個素數。我感覺好像對For和While循環有一個體面的理解,但是對於如何將布爾返回值集成到循環中感到困惑。這裏是我當前的代碼和錯誤:迭代直到函數返回True用戶定義的次數
錯誤結果:
input:100
Traceback (most recent call last):
File "euler7.py", line 25, in <module>
primeList += 1
TypeError: 'int' object is not iterable
,代碼:
def isprime(n):
x = 2
while x < sqrt(n):
if n % x == 0:
return False
else:
x += 1
return True
userinput = int(raw_input('input:'))
primeList = []
primesFound = 0
while primesFound != userinput:
i = 2
if isprime(i):
primeList.append(i)
primeList += 1
i += 1
else:
i += 1
編輯(包括更新和運行代碼):
from math import sqrt
def isprime(n):
x = 2
while x < (sqrt(n) + 1):
if n % x == 0:
return False
else:
x += 1
return True
userinput = int(raw_input('input:'))
primeList = []
primeList.append(2)
i = 2
while len(primeList) != userinput:
if isprime(i):
primeList.append(i)
i += 1
else:
i += 1
print 'result:', primeList[-1]