摘要: 使用csv包 读取信息 csvfile = file('csv_test.csv', 'rb') reader = csv.reader(csvfile) for line in reader: print line csvfile.close() 写信息 csvfile = file('csv_t 阅读全文
posted @ 2017-06-09 15:53 hellowcf 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.csdn.net/tomatoandbeef/article/details/52253578 一.安装python和xlrd模块 python下载地址,安装好后要配置环境变量,即把Python的安装路径加到系统path环境变量里就行了。 xlrd下载地址,下载后解压, 阅读全文
posted @ 2017-06-09 15:31 hellowcf 阅读(377) 评论(0) 推荐(0) 编辑