©
This document uses PHP Chinese website manual Release
现在,我们能使用Python完成比 2+2 更复杂的工作。在下例里,我们能写出一个初步的斐波纳契数列如下:
>>> # Fibonacci series: 斐波纳契数列 ... # 两个元素的总和确定了下一个数 ... a, b = 0, 1 >>> while b < 10: ... print(b) ... a, b = b, a+b ... 1 1 2 3 5 8
这个例子介绍了几个新特征。
>>> i = 256*256 >>> print('The value of i is', i) The value of i is 65536
关键字end可以被用于防止输出新的一行,或者在输出的末尾添加不同的字符:
>>> a, b = 0, 1 >>> while b < 1000: ... print(b, end=',') ... a, b = b, a+b ... 1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,