这是我获得第二列和第三列的方法:
import csvpath = 'c:\temp\'file=open( path +"xyz.CSV", "r")reader = csv.reader(file)for line in reader: t=line[1],line[2] print(t)
结果如下:
('col2', 'col3')('empId1', '241682-27638-USD-CIGGNT ')('empId2', '241682-27638-USD-OCGGINT ')('empId3', '241942-37190-USD-GGDIV ')('empId4', '241942-37190-USD-CHYOF ')('empId5', '241942-37190-USD-EQPL ')('empId6', '241942-37190-USD-INT ')('empId7', '242066-15343-USD-CYJOF ')('empId8', '242066-15343-USD-CYJOF ')('empId9', '242066-15343-USD-CYJOF ')('empId10', '241942-37190-USD-GGDIV ')


