This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author andrina
Recipients
Date 2005-05-03.04:02:15
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The example in section 4.2 of the on-line tutorial should read as 
follows:

>>> # Measure some strings:
... a = ['cat', 'window', 'defenestrate']
>>> for x in a:
...     print x, len(a)
... 
cat 3
window 6
defenestrate 12

currently the print line has len(x)

History
Date User Action Args
2007-08-23 14:31:31adminlinkissue1194209 messages
2007-08-23 14:31:31admincreate