标签:
1. 写入并生成csv文件
# coding: utf-8
import csv
csvfile = file(‘csv_test.csv‘, ‘wb‘)
writer = csv.writer(csvfile)
writer.writerow([‘姓名‘, ‘年龄‘, ‘电话‘])
data = [
(‘小河‘, ‘25‘, ‘1234567‘),
(‘小芳‘, ‘18‘, ‘789456‘)
]
writer.writerows(data)
csvfile.close()
# coding: utf-8
import csv
csvfile = file(‘csv_test.csv‘, ‘rb‘)
reader = csv.reader(csvfile)
for line in reader:
print line
csvfile.close()
root@he-desktop:~/python/example# python read_csv.py
[‘\xe5\xa7\x93\xe5\x90\x8d‘, ‘\xe5\xb9\xb4\xe9\xbe\x84‘, ‘\xe7\x94\xb5\xe8\xaf\x9d‘]
[‘\xe5\xb0\x8f\xe6\xb2\xb3‘, ‘25‘, ‘1234567‘]
[‘\xe5\xb0\x8f\xe8\x8a\xb3‘, ‘18‘, ‘789456‘]
标签:
原文地址:http://www.cnblogs.com/snifferhu/p/4616288.html