please tell me what\'s the problem in this code it\'s giving an error
import csv with open(\'some.csv\', \'rb\') as f: reader = csv.reader(f) for ro
from __future__ import with_statement
And if that doesn't work, rewrite it to not use with in the first place.
with