Python 代码也不怕复制粘贴了! 2015/03/12 13952 # fib.py def fib(n): a, b = 0, 1 while a < n: print(a, end=' ') a, b = b, a+b #: print() #: fib(1000)