[issue1411] A typo in tutorial

Jeong-Min Lee report at bugs.python.org
Fri Nov 9 05:35:58 CET 2007


New submission from Jeong-Min Lee:

In the middle of "3.1.4 Lists", it reads as follow

-----
>>> a
[]

The built-in function len() also applies to lists:

>>> len(a)
8
-----

but it should be ..
-----
>>> a
[]

The built-in function len() also applies to lists:

>>> len(a)
0
-----


http://docs.python.org/tut/node5.html#SECTION005140000000000000000

----------
components: Documentation
messages: 57295
nosy: falsetru
severity: urgent
status: open
title: A typo in tutorial
versions: Python 2.5

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1411>
__________________________________


More information about the Python-bugs-list mailing list