我開始學習python有一天。我有一個從python文檔複製的斐波那契函數。它詳細介紹了與最終打印語句語法錯誤='Python結尾語法錯誤結束=''
我手動重寫所有的代碼,仍然出現錯誤
def fibonacci2(n):
a, b = 0, 1
while b < n:
print(b, end=' ')
a, b = b, a+b
print()
它說,提前
syntax error while detecting tuple
謝謝
編輯:我很抱歉,我忘了寫,我使用python 3.
認沽'從__future__進口print_function'之上是非常重要的該文件(或升級到Python 3)。 –