Skip to content

Commit de157c1

Browse files
Fibonacci usage explained
1 parent cf6758f commit de157c1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,7 @@ together. For instance, we can write an initial sub-sequence of the
499499
`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_sequence>`_
500500
as follows::
501501

502+
>>> # Fibonacci is used as an example to best demonstrates loops, multiple assignment, and indentation all at once
502503
>>> # Fibonacci series:
503504
>>> # the sum of two elements defines the next
504505
>>> a, b = 0, 1

0 commit comments

Comments
 (0)