I just found out that I can save space\ speed up reads of CSV files.
Using the answer of my previous question http://stackoverflow.com/questions/3710263/how-do-i-create-a-csv-file-from-database-in-python
And 'wb' for opens
w = csv.writer(open(Fn,'wb'),dialect='excel')
How can I open all files in a directory and saves all files with the same name as starting name and use 'wb' to reformat all files. I guess convert all CSV's to binary CSV's.