13-斐波那契数列2019-11-20 本文已影响0人 pengwgfib = [0,1] for i in range(9): fib.append(fib[-1] + fib[-2]) print(fib)