In the following function to calculate Fibonacci numbers, which represents the nth number of the Fibonacci number list?def fib(n): a, b = 0, 1 count = 1 while count < n: a, b = b, a+b count = count + 1
A、a;
B、b;
C、a+1;
D、b+1
发布时间:2025-10-13 08:07:21