Python練習例6
タイトル6:フィボナッチ数列.
これは簡単です.
lst = [0, 1]
for i in range(10):
t = lst[-1] + lst[-2]
lst.append(t)
#lst ,t
print lst,t
これは簡単です.