Excel文件读取的两种方式

little bottle
发布: 2019-04-09 13:37:05
转载
3414 人浏览过

本文是关于Python读取Excel文件的两种方式的具体代码,感兴趣的小伙伴可以试试!

一、Pandas库的读取操作

from pandas import read_excel

dr=read_excel(filename,header)

dr#dataframe数据

dw=DataFrams(data=dict,columns=dict.keys())

dw.to_excel(filename)

二、xlrd/xlwt

2.1、xlrd——读取

work_book=xlrd.open_workbook(filename)

sheet1=work_book.sheet_by_name('Sheet1')

#shee1=work_book,sheet_by_index(0)

sheet1.cell_value(row,col)

sheet1.row(i) #返回列表,内容为数据类型:数据内容的字典;

sheet1.row_values(i)#返回i行数据内容

sheet1.col(i)

sheet1.col_values(i)

2.2、xlwt——写入

dw=xlwt.Workbook()

sheet_1=dw.add_sheet('sheet1',cell_overwrite_ok=True)

sheet_1.write(row,col,string)

dw.save(filename)

【推荐课程:Python视频教程

以上是Excel文件读取的两种方式的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:cnblogs.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板