Fix merge glitch.
This commit is contained in:
parent
043d6f67c7
commit
22ec03c286
|
@ -548,8 +548,8 @@ series as follows::
|
||||||
... # the sum of two elements defines the next
|
... # the sum of two elements defines the next
|
||||||
... a, b = 0, 1
|
... a, b = 0, 1
|
||||||
>>> while b < 10:
|
>>> while b < 10:
|
||||||
... print b
|
... print(b)
|
||||||
... a, b = b, a+b
|
... a, b = b, a+b
|
||||||
...
|
...
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
|
|
Loading…
Reference in New Issue