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


     
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to