在工作中经常会对excel进行数据处理,一般常用模块式xlrd、xlwt、xlutils。
以下是xlrd、xlwt、xlutils模块的简单介绍
xlrd - 读取 Excel 文件
xlwt - 写入 Excel 文件
xlutils - *** 作 Excel 文件的实用工具,如复制、分割、筛选等
安装
pip install xlrd pip install xlwt pip install xlutils
xlrd 读取excel
excel = xlrd.open_workbook('demo.xlsx')table = excel.sheet_by_index(0)print(u"表单 %s 共 %d 行 %d 列" % (table.name, table.nrows, table.ncols))print("第一行第二列:", table.cell_value(0, 1))ncols = table.ncols # 获取列表的有效列数print('获取列表的有效列数-->', ncols)print('获取指定行的所有数据-->', table.row_values(1))print('获取指定列的所有数据-->', table.col_values(1))
参考链接:
http://www.open-open.com/lib/view/open1472701496085.html
https://www.cnblogs.com/lingwang3/p/6416023.html
http://blog.csdn.net/liu5257/article/details/53864198
以上是内存溢出为你收集整理的python 对excel进行读写 *** 作模块xlrd、xlwt、xlutils介绍全部内容,希望文章能够帮你解决python 对excel进行读写 *** 作模块xlrd、xlwt、xlutils介绍所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)