Python基础学习七 Excel操作

时间:2021-11-04 06:55:04

python操作excel,python操作excel使用xlrd、xlwt和xlutils模块,

xlrd模块是读取excel的,xlwt模块是写excel的,xlutils是用来修改excel的。

例子1:新建Excel,并添加数据

 import xlwt
xld = xlwt.Workbook() # 新建一个excel文件
sheet = xld.add_sheet('sheet1') # 添加一个sheet表
sheet.write(0,0,'姓名')#第一行第一列
sheet.write(0,1,'性别')#第一行第二列
sheet.write(0,2,'年龄')#第一行第三列
xld.save('stu.xls')# 读的时候可以是xlsx的格式,但是写的时候不允许
xld.save(r'C:\Users\LOUIS\Desktop\stu.xls') # 存指定位置

例子2:新建Excel,并添加数据

 import xlwt
title = [ '姓名','年龄','性别','分数'] stus = [
['user1', 18, '女', 89.9],
['user2', 20, '男', 90],
['user3', 19, '女', 80],
['user4', 20, '男', 70]
] book = xlwt.Workbook()# 新建一个excel文件
sheet = book.add_sheet('sheet2')# 添加一个sheet表
column = 0 #控制列
for t in title:
sheet.write(0,column,t)
column+=1
row =1 # 控制行 for stu in stus:
new_col = 0 # 控制列
for s in stu:# 控制写每一列的
sheet.write(row,new_col,s)
new_col+=1
row+=1
book.save('stu.xls')
book.save(r'C:\Users\LOUIS\Desktop\stu.xls')

例子3:读取Excel

 import xlrd
book = xlrd.open_workbook('stu.xls') #打开一个excel
sheet = book.sheet_by_index(0) #根据顺序获取sheet
# sheet2 = book.sheet_by_name('sheet1') #根据sheet页名字获取sheet
# print(sheet.cell(0,0).value) #指定行和列获取数据
# print(sheet.ncols) #获取excel里面有多少列
# print(sheet.nrows) #获取excel里面有多少行
sheet.row_values(1)#取第几行的数据
print(sheet.col_values(1)) #取第几列的数据
for i in range(sheet.nrows): # 0 1 2 3 4 5
print(sheet.row_values(i)) #取第几行的数据

例子4:修改Excel

 from xlutils.copy import copy
import xlrd
book1 = xlrd.open_workbook('stu.xls')
book2 = copy(book1) #拷贝一份原来的excel
sheet = book2.get_sheet(0) #获取第几个sheet页
sheet.write(1,3,0)# 第一行第三列修改为 0
sheet.write(1,5,'louis') # 第一行第5列修改为louis
book2.save('stu.xls