classification
Title: Small typo
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hllywood, rhettinger, tjreedy (3)
Priority: normal Keywords

Created on 2004-11-15 22:57 by hllywood, last changed 2004-11-18 06:23 by rhettinger.

Messages (3)
msg23162 - (view) Author: Scott Miller (hllywood) Date: 2004-11-15 22:57
On: 
http://www.python.org/doc/current/tut/node5.html

Should:
"Like in C, the equal sign ("=") is used to assign a
value to a variable. The value of an assignment is not
written:"

Be:
"The value of an assignment *is* written:"
msg23163 - (view) Author: Terry J. Reedy (tjreedy) Date: 2004-11-17 19:17
Logged In: YES 
user_id=593130

The sentence is correct as written; it refers to the following 
different responses:

>>> 2+3
5
>>> a=2+3
>>>

However, I do think 'printed' or 'displayed' would be clearer 
both here and in a previous sentence in the same 
subsection.  And, of course, Python assignment is not 
really 'like in C' and people eventually have to learn the 
difference.

[Note: SourceForge does not make urls clickable, and a 
given url may encompass several subsections.  So please 
give section/subsection numbers instead or in addition, as 
in '3.1.1 Numbers']
msg23164 - (view) Author: Raymond Hettinger (rhettinger) Date: 2004-11-18 06:23
Logged In: YES 
user_id=80475

Fixed.  Thanks.
History
Date User Action Args
2004-11-15 22:57:04hllywoodcreate