赞
踩
之前经常用python读取Excel内容,后来有一段时间不用了再用就给忘记了,觉得记录还是很有必要的
1. 首选安装xlrd
安装方法很简单,如果装了pip的话 pip install xlrd
2. python代码
实现的功能:将Excel的内容按照字典形式打印出来
结果:[{'user': 'hehe', 'psd': '1111111', 'result': '1111111'}, {'user': 'hehe', 'psd': '1111111', 'result': '1111111'}, {'user': 'hehe', 'psd': '1111111', 'result': '1111111'}, {'user': 'hehe', 'psd': '1111111', 'result': '1111111'}]
- #!/usr/local/bin/python2.7
- # encoding: utf-8
- import xlrd
- import os
- """
- 读取excel内容
- ""
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。