mirror of
https://github.com/python/cpython.git
synced 2025-10-02 21:25:24 +00:00
Drop double newlines printed in some file iteration examples.
Patch by Steven Kryskalla.
This commit is contained in:
parent
b7bc92530e
commit
bd5279ea24
4 changed files with 7 additions and 6 deletions
|
@ -688,7 +688,7 @@ using a :keyword:`for` statement::
|
|||
for char in "123":
|
||||
print char
|
||||
for line in open("myfile.txt"):
|
||||
print line
|
||||
print line,
|
||||
|
||||
This style of access is clear, concise, and convenient. The use of iterators
|
||||
pervades and unifies Python. Behind the scenes, the :keyword:`for` statement
|
||||
|
|
|
@ -397,7 +397,7 @@ succeeded or failed. Look at the following example, which tries to open a file
|
|||
and print its contents to the screen. ::
|
||||
|
||||
for line in open("myfile.txt"):
|
||||
print line
|
||||
print line,
|
||||
|
||||
The problem with this code is that it leaves the file open for an indeterminate
|
||||
amount of time after the code has finished executing. This is not an issue in
|
||||
|
@ -407,7 +407,7 @@ ensures they are always cleaned up promptly and correctly. ::
|
|||
|
||||
with open("myfile.txt") as f:
|
||||
for line in f:
|
||||
print line
|
||||
print line,
|
||||
|
||||
After the statement is executed, the file *f* is always closed, even if a
|
||||
problem was encountered while processing the lines. Other objects which provide
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue