2

我正在尝试理解 Python,但我仍然不明白。我是这门语言的新手,想正确理解它。这是使用循环的斐波那契数列中的一条线。请解释这段代码的含义。我正在尝试手动获取模式。我得到的模式最多为 3,但在 3 之后我没有得到答案。

a, b = 0, 1
while b < 50:
    print(b)
    a, b = b, a + b
4

6 回答 6

10
a, b = b, a + b

这称为多重分配。它基本上是一个原子版本:

a = b
b = a + b

所谓原子,我的意思是右边的所有内容都是在将其放入左边的变量之前计算的。所以a变成bb变成了plus的版本,相当于非原子:ab

old_a = a
a = b
b = old_a + b

因此,就您所看到的而言:

        a                        b               output
================    =========================    ======
(initial values)        (initial values)
        0                        1                  1
(becomes prev b)    (becomes sum of prev a,b)
        1                        1                  1
        1                        2                  2
        2                        3                  3
        3                        5                  5
        5                        8                  8

可以在本教程的此处找到确切的代码(以及多重赋值的解释)。

于 2013-08-02T06:17:07.423 回答
3

它是多重分配(或元组拆包)。

根据Python 教程

>>> # Fibonacci series:
... # the sum of two elements defines the next
... a, b = 0, 1
>>> while b < 10:
...     print(b)
...     a, b = b, a+b
...
1
1
2
3
5
8

这个例子介绍了几个新特性。

第一行包含一个多重赋值:变量 a 和 b 同时获得新值 0 和 1。在最后一行再次使用它,表明右侧的表达式在任何赋值之前都首先被计算发生。右侧的表达式从左到右计算。

于 2013-08-02T06:10:21.253 回答
1

多个答案怎么样?

def fib(num):
    a = 0
    b = 1
    while b <= num:
        prev_a = a
        a = b
        b = prev_a +b
        #print b                                                                                                          
    return a

print fib(13)

def pythonic_fib(num):
    a,b = 0,1
    while b <= num:
        a,b = b, a+b
    return a

print pythonic_fib(13)

def recursive_fib(num, a, b):
    if (b >= num):
        return b
    else:
        return recursive_fib(num, b, a+b)

print recursive_fib(13, 0, 1)
于 2017-01-04T21:43:04.363 回答
1

我知道这是一个老问题,但我只是认为我已经完成了 2 美分,因为其中很多对于斐波那契数列(在给定答案之外)来说似乎有点过于复杂,以防有人仍在寻找。你可以这样做:

a=1
b=0
while b<400:
    a=a+b
    b=a+b
    print(a)
    print(b)

这将给出序列的所需输出(到您设置的 b 小于的任何值)。

于 2019-12-25T03:25:49.567 回答
-1
#The easy way to generate Fibonacci series in python is 
user = input('Please enter the integer range for Fibonacci series: '); # take input from user form the range of Fibonacci series.
try:# to ignore wrong inputs and be aware from error we use try and except block
    d=int(user);# converts the user input to type integer.
    a=0; #initialization``
    b=1; #initialization
    print(a,b,end=' '); # print initial value of a and b
    for c in range(0,d): # here c is iterable variable and in range o is the starting point and d is the ending range which we get from user
        c=a+b;
        a=b;
        b=c;
        print(c,end=' ');

except Exception as e:
    print(e); # if any error occurred in the input here it shows which error occurs
于 2017-10-08T11:22:13.407 回答
-1
a= int(input("Enter the first number:"));
Enter the first number:0
b= int(input("enter the second number:"));
enter the second number:1
n= int (input("enter the number of terms:"));
enter the number of terms:10
print(a,b);
0 1
while(n>2):
      c=a+b;
      a=b;
      b=c;
      print(c);
      n=n-1;


1
2
3
5
8
13
21
34
于 2017-12-05T17:32:20.133 回答