example03.py 84 字节
Newer Older
J
jackfrued 已提交
1 2 3 4 5
a, b = 0, 1
for num in range(1, 101):
    a, b = b, a + b
    print(f'{num}: {a}')