首页 > 代码库 > python读取excel文件(xrld模块)
python读取excel文件(xrld模块)
Python读取excel文件
一、python xlrd模块 安装
mac 下安装python xlrd模块
http://www.crifan.com/python_read_excel_xls_file_xlrd/comment-page-1/
python setup.py install
在mac 下出现的错误是
http://stackoverflow.com/questions/18199853/error-could-not-create-library-python-2-7-site-packages-xlrd-permission-den
解决办法是:
sudo python setup.py install
python xlrd模块安装 在mac 下与window下有点不同
都是下载安装包解压后,然后既然终端 cd改变压缩包所在的路径 、目录
window 下 python setup.py install
mac 下 sudo python setup.py install
二、读取excel文件
在导入正确的模块之后,处理excel文件用python感觉比较java更简洁。但是各个模块也会有不同的效果
http://www.cnblogs.com/zhangjun1130/archive/2012/10/18/2728760.html
简单的代码:
# encoding: utf-8 import xlrd data= http://www.mamicode.com/xlrd.open_workbook('副本工资条模板1.xls') # 读excel文件>
Python读取excel文件参考:
http://www.360doc.com/content/12/0918/22/9369336_236837182.shtml xlrd模块的使用
http://www.cnblogs.com/lhj588/archive/2012/01/06/2314181.html
http://www.cnblogs.com/JefferyZhou/archive/2010/08/24/1807647.html excel数据导出到xml
python读取excel文件(xrld模块)