[雪峯磁針石博客]python 3.7極速入門教程4函數

本文教程目錄 4函數 菲波那契序列: >>> # Fibonacci series: ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while b < 10: ... print(b) ... a, b = b, a+b ... 1 1 2 3 5 8 本例的新特性。 第一行和最後一行有多賦值:
相關文章
相關標籤/搜索