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

Skip to content

Commit fef952a

Browse files
Issue #18079: Fix a typo in the tutorial.
1 parent b501b56 commit fef952a

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
@@ -447,9 +447,9 @@ example::
447447
>>> x = [a, n]
448448
>>> x
449449
[['a', 'b', 'c'], [1, 2, 3]]
450-
>>> p[0]
450+
>>> x[0]
451451
['a', 'b', 'c']
452-
>>> p[0][1]
452+
>>> x[0][1]
453453
'b'
454454

455455
.. _tut-firststeps:

0 commit comments

Comments
 (0)