我想問一下如何檢索出fibo列表,然後檢查用戶的輸入值是否在fibo列表中。在Python中檢查屬於斐波納契數字的輸入
a , b = 1, 1
while num <= sys.maxint:
fibo == a , b = b, a+b
if num == (b +a+b):
print "It is a Fibonacci number"
break
else:
print "It is not a Fibonacci number"
break
謝謝!
你讀過[這個問題,它的答案(http://stackoverflow.com/questions/494594/how-to-write-the-fibonacci - 序列式的Python)?難道他們不給你足夠的信息來解決你的問題嗎? – MarcoS
是的,我做了..但我真的不明白... – user950472