Kaydet (Commit) 3801f632 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Issue #18079: Fix a typo in the tutorial.

...@@ -447,9 +447,9 @@ example:: ...@@ -447,9 +447,9 @@ example::
>>> x = [a, n] >>> x = [a, n]
>>> x >>> x
[['a', 'b', 'c'], [1, 2, 3]] [['a', 'b', 'c'], [1, 2, 3]]
>>> p[0] >>> x[0]
['a', 'b', 'c'] ['a', 'b', 'c']
>>> p[0][1] >>> x[0][1]
'b' 'b'
.. _tut-firststeps: .. _tut-firststeps:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment