reading file in for loop

loial jldunn2000 at gmail.com
Fri Sep 5 06:20:35 EDT 2014


If I read a file using a for loop, as follows, is the file left open if I execute a break in the for loop?


for line in open(myFile).readlines():

    if something:
        break


     



More information about the Python-list mailing list