PHP前端开发

详解使用Python对Excel进行读写操作方法

百变鹏仔 2小时前 #Python
文章标签 详解

学习Python的过程中,我们会遇到Excel的读写问题。这时,我们可以使用xlwt模块将数据写入Excel表格中,使用xlrd模块从Excel中读取数据。下面我们介绍如何实现使用Python对Excel进行读写操作。

Python版:3.5.2

通过pip安装xlwt,xlrd这两个模块,如果没有安装的话:

pip install xlwt

pip install xlrd

一、对Excel文件进行写入操作:

# -*- conding:utf-8 -*-__author__ = 'mayi'#How to write to an Excel using xlwt moduleimport xlwt#创建一个Wordbook对象,相当于创建了一个Excel文件book = xlwt.Workbook(encoding = "utf-8", style_compression = 0)#创建一个sheet对象,一个sheet对象对应Excel文件中的一张表格sheet = book.add_sheet("sheet1", cell_overwrite_ok = True)#向表sheet1中添加数据sheet.write(0, 0, "EnglishName")  #其中,"0, 0"指定表中的单元格,"EnglishName"是向该单元格中写入的内容sheet.write(1, 0, "MaYi")sheet.write(0, 1, "中文名字")sheet.write(1, 1, "蚂蚁")#最后,将以上操作保存到指定的Excel文件中book.save("name.xls")

二、对Excel文件进行读取操作:

# -*- conding:utf-8 -*-__author__ = 'mayi'# How to read from an Excel using xlrd moduleimport xlrd# 打开指定路径中的xls文件,得到book对象xls_file = "name.xls"#打开指定文件book = xlrd.open_workbook(xls_file)# 通过sheet索引获得sheet对象sheet1 = book.sheet_by_index(0)# # 获得指定索引的sheet名# sheet1_name = book.sheet_names()[0]# print(sheet1_name)# # 通过sheet名字获得sheet对象# sheet1 = book.sheet_by_name(sheet1_name)# 获得行数和列数# 总行数nrows = sheet1.nrows#总列数ncols = sheet1.ncols# 遍历打印表中的内容for i in range(nrows):    for j in range(ncols):        cell_value = sheet1.cell_value(i, j)        print(cell_value, end = "	")    print("")