许多Python 2里的标准库函数都会返回列表,而Python 3都修改成了返回生成器, ... generator version def fibon(n): a = b = 1 for i in range(n): ...
確定! 回上一頁