#working_with_files
Title: Reading Files
Builtin operator
instead of :
can use:
Title: Reading Files
Builtin operator
with
in python will automatically close the file when you are done processing it.instead of :
handle = open("test.txt")
can use:
with open("test.txt") as file_handler