I need to stripe the white spaces from a CSV file that I read
import csv aList=[] with open(self.filename, \'r\') as f: reader = csv.reader(f, delimite
You can do:
aList.append([element.strip() for element in row])