-
Notifications
You must be signed in to change notification settings - Fork 1
/
cleanLstops2.py
8 lines (7 loc) · 32.2 KB
/
cleanLstops2.py
1
2
3
4
5
6
7
8
import csv
f = open('CHICAGO_DATA/cta_L_stops/cta_L_stops.csv', 'rb')
res = open('CHICAGO_DATA/cta_L_stops/cta_L_stops_new.csv', 'wb')
csvread = csv.reader(f)
csvwrite = csv.writer(res)
for line in csvread:
csvwrite.writerow(line)