Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 22ec03c

Browse files
committed
Fix merge glitch.
1 parent 043d6f6 commit 22ec03c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/tutorial/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,8 @@ series as follows::
548548
... # the sum of two elements defines the next
549549
... a, b = 0, 1
550550
>>> while b < 10:
551-
... print b
552-
... a, b = b, a+b
551+
... print(b)
552+
... a, b = b, a+b
553553
...
554554
1
555555
1

0 commit comments

Comments
 (0)