Issue #18079: Fix a typo in the tutorial.
This commit is contained in:
parent
b501b565c6
commit
fef952a607
|
@ -447,9 +447,9 @@ example::
|
|||
>>> x = [a, n]
|
||||
>>> x
|
||||
[['a', 'b', 'c'], [1, 2, 3]]
|
||||
>>> p[0]
|
||||
>>> x[0]
|
||||
['a', 'b', 'c']
|
||||
>>> p[0][1]
|
||||
>>> x[0][1]
|
||||
'b'
|
||||
|
||||
.. _tut-firststeps:
|
||||
|
|
Loading…
Reference in New Issue