详解使用python对excel进行读写操作方法

学习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 module
import 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 module
import 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 = “\t”)
print(“”)

以上就是详解使用python对excel进行读写操作方法的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论