#22170: merge with 3.4.

This commit is contained in:
Ezio Melotti 2014-08-08 17:24:06 +03:00
commit 7d02a98f78
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ using a :keyword:`for` statement::
for char in "123":
print(char)
for line in open("myfile.txt"):
print(line)
print(line, end='')
This style of access is clear, concise, and convenient. The use of iterators
pervades and unifies Python. Behind the scenes, the :keyword:`for` statement