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 <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1411>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to