Tagged Questions

3
votes
5answers
1k views

Using “with” statement for CSV files in Python

Is it possible to use the with statement directly with CSV files? It seems natural to be able to do something like this: import csv with csv.reader(open("myfile.csv")) as reader: # do things with ...