# coding:utf8with open('file.csv','r') as f: for t in f: print t.strip().split(',')运行结果:['1', 'a', 'b', 'c']['2', 'd', 'e', 'f'][Finished in 0.0s]