Using Python module children csv fast processing csv file

code show as below:

1 import csv
2 with open('test.csv',newline='') as f:
3     reader = csv.reader(f)
4     for row in reader:
5         print(row)

Guess you like

Origin www.cnblogs.com/frisk/p/11567103.html