希望好心人解释一下倒数第二行是什么意思def fab(max): n, a, b = 0, 0, 1 while n < max: print b a, b = b, a + b n = n + 1 查看完整描述