On Apr 4, 12:58 am, Lawrence D'Oliveiro <l...@geek- central.gen.new_zealand> wrote: > In message <8bc55c05-19da-41c4- > > [email protected]>, gert wrote: > > with open('com1', 'r') as f: > > for line in f: > > print('line') > > Why bother, why not just > > for line in open('com1', 'r') : > print line
Interesting :) So its does the same thing as with right ? Automatic closing and finalizing stuff. -- http://mail.python.org/mailman/listinfo/python-list
