希望好心人解釋一下倒數第二行是什么意思def fab(max):
n, a, b = 0, 0, 1
while n < max:
print b
a, b = b, a + b
n = n + 1
Python初學者對一段代碼看不懂
慕村225694
2018-07-18 11:09:15