Review Note

Last Update: 07/10/2024 01:20 PM

Current Deck: Python fundamentals

Published

Fields:

Original
f = open("my_file.txt", 'w')
f.write("blah blah")
f.close()

Better
with open("my_file.txt", 'w') as f:
    f.write("blah blah")

Comments
The with statement means that the file will be closed automatically, even if f.write() throws an exception.
Context
Python

Tags:

python_fundamentals

Suggested Changes:

Deck Changes (Suggestion to move the Note to the following Deck):

Field Changes:

Tag Changes: