| 1 | initial version |
with open("outputfilepath", 'w') as fp:
for line in iterable: #assuming line is str with \n
print >> fp, line
#implicit fp.close() here as "with" scope ends.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.