Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Doc/tutorial/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,7 @@ together. For instance, we can write an initial sub-sequence of the
`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_sequence>`_
as follows::

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