斐波那契序列蟒蛇

时间:2013-08-02 06:07:06

标签: python loops python-3.x iterator iterable-unpacking

我正在尝试理解Python,但我仍然没有理解它。我是这门语言的新手,想要正确理解它。 这是使用循环的Fibonacci序列的一条线。请解释此代码的含义。我试图手工获得模式。我得到的模式最多为3,但在3之后我没有得到答案。

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

6 个答案:

答案 0 :(得分:8)

a, b = b, a + b

这称为多重赋值。它基本上是原子版本:

a = b
b = a + b

通过原子,我的意思是右边的所有内容都是在计算之前计算到左边的变量。因此a变为bb变为ab版本,相当于非原子:< / p>

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

教程中可以找到here的确切代码(以及多项作业的解释)。

答案 1 :(得分:3)

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

根据Python Tutorial

>>> # 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.在最后一行,这是   再次使用,证明右侧的表达方式   在任何分配发生之前,都会先评估。该   右侧表达式从左到右进行评估。

答案 2 :(得分: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)

答案 3 :(得分:1)

我知道这是一个古老的问题,但是我想我会用2美分作为答案,因为对于斐波那契数列(给定答案之外),如果有些人仍然不满意的话,其中很多似乎太过复杂了看着。您可以这样做:

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

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

答案 4 :(得分:0)

#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

答案 5 :(得分:0)

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