diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index deabac5253051c..32c5de5e4cf0dd 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -499,6 +499,7 @@ together. For instance, we can write an initial sub-sequence of the `Fibonacci series `_ 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