Python读写Excel表格的方法

作者:水军总督 时间:2022-11-10 20:43:18 

本文实例为大家分享了Python读写Excel表格的具体代码,供大家参考,具体内容如下

python读取Excel表格:


import xlrd

def read_excel():
# 打开文件
wb = xlrd.open_workbook(r'test.xls')
# 获取所有sheet的名字
print(wb.sheet_names())
# 获取第二个sheet的表名
sheet2 = wb.sheet_names()[1]
print("sheet2 = {}".format(sheet2))
# sheet1索引从0开始,得到sheet1表的句柄
sheet1 = wb.sheet_by_index(0)
rowNum = sheet1.nrows
colNum = sheet1.ncols
print("rowNum = {}, colNum = {}".format(rowNum, colNum))
# 获取某一个位置的数据
c1_0 = sheet1.cell(1, 0).value
print("c1_0 = {}".format(c1_0))
# 1 ctype : 0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error
print(sheet1.cell(1, 2).ctype)
# 获取整行和整列的数据
# 第二行数据
row2 = sheet1.row_values(1)
print("row2 = {}".format(row2))
# 第二列数据
cols2 = sheet1.col_values(2)
print("cols2 = {}".format(cols2))
# python读取excel中单元格内容为日期的方式
# 返回类型有5种
print("for循环:")
for i in range(rowNum):
# if sheet1.cell(i, 2).ctype == 1:
 # d = xlrd.xldate_as_tuple(sheet1.cell_value(i, 2), wb.datemode)
 # print(date(*d[:3]), end='')
print(sheet1.cell(i, 2))

# 输出如下:
# ['我的第一个表', '第二个', '呵呵第三个']
# sheet2 = 第二个
# rowNum = 8, colNum = 3
# c1_0 = w
# 2
# row2 = ['w', 's', 10.0]
# cols2 = ['z', 10.0, 666.0, '2021年2月25日 02:06:25', 44252.0, 'x', 1, '']
# for循环:
# text:'z'
# number:10.0
# number:666.0
# text:'2021年2月25日 02:06:25'
# xldate:44252.0
# text:'x'
# bool:1
# empty:''

Python读写Excel表格的方法

python写入Excel表格:


import xlwt

# 写入数据
def write_excel():
f = xlwt.Workbook()
# 创建表sheet1
sheet1 = f.add_sheet(u'sheet1', cell_overwrite_ok=True)
# 如果是写入中文,则要用u'汉字'的形式。比如 sheet1.write(0,0, u'汉字')
row0 = [u'业务', u'状态', u'北京', u'上海', u'广州', u'深圳', u'状态小计', u'合计']
column0 = [u'机票', u'船票', u'火车票', u'汽车票', u'其他']
status = [u'预定', u'出票', u'退票', u'业务小计']
for i in range(0, len(row0)):
sheet1.write(0, i, row0[i], set_style("Time New Roman", 220, True))

# 合并单元格:
# sheet1.write_merge(x, x + m, y, y + n, string, style)
# x表示行,y表示列,m表示跨行个数,n表示跨列个数,string表示要写入的单元格内容,style表示单元格样式。
i, j = 1, 0
while i < 4 * len(column0): # 控制循环:每次加4
# 第一列
sheet1.write_merge(i, i + 3, 0, 0, column0[j], set_style('Arial', 220, True))
# 最后一列
sheet1.write_merge(i, i + 3, 7, 7)
i += 4
j += 1
sheet1.write_merge(21, 21, 0, 1, u'合计', set_style("Time New Roman", 220, True))

i = 0
while i < 4 * len(column0): # 控制外层循环:每次加4
for j in range(0, len(status)): # 控制内层循环:设置每一行内容
 sheet1.write(i + j + 1, 1, status[j])
i += 4

# 创建sheet2
sheet2 = f.add_sheet(u'sheet2',cell_overwrite_ok=True)
row0 = [u'姓名', u'年龄', u'出生日期', u'爱好', u'关系']
column0 = [u'UZI', u'Faker', u'大司马', u'PDD', u'冯提莫']

# 生成第一行
for i in range(0, len(row0)):
sheet2.write(0, i, row0[i], set_style('Times New Roman', 220, True))

# 生成第一列
for i in range(0, len(column0)):
sheet2.write(i + 1, 0, column0[i], set_style('Times New Roman', 220, True))
f.save('data.xls')

执行上面这个写入excel表格的函数后,会生成data.xls文件。

写入表格1:

Python读写Excel表格的方法

写入表格2:

Python读写Excel表格的方法

来源:https://blog.csdn.net/kaida1234/article/details/114178347

标签:python,Excel
0
投稿

猜你喜欢

  • 显卡驱动CUDA 和 pytorch CUDA 之间的区别

    2021-12-29 04:35:31
  • 利用Python将图片中扭曲矩形的复原

    2022-05-24 21:35:54
  • Jenkins配置maven项目之打包、部署、发布的全过程

    2023-08-07 19:14:29
  • MySQL备份时排除指定数据库的方法

    2024-01-19 03:59:21
  • asp制作验证码的方法

    2008-05-08 12:50:00
  • python爬虫数据保存到mongoDB的实例方法

    2021-10-10 09:52:24
  • php基于curl主动推送最新内容给百度收录的方法

    2023-11-22 04:46:44
  • 学习使用Go反射的用法示例

    2024-04-25 15:25:49
  • TensorFlow的环境配置与安装方法

    2022-10-29 12:23:19
  • 40个你可能不知道的Python技巧附代码

    2021-09-26 13:56:58
  • Javascript 动画初探(实现)

    2009-02-06 15:56:00
  • python中update的基本使用方法详解

    2021-12-22 03:57:40
  • 对pandas中iloc,loc取数据差别及按条件取值的方法详解

    2021-06-15 01:58:05
  • Python Scrapy多页数据爬取实现过程解析

    2021-02-28 08:14:01
  • Mysql日期格式以及内置日期函数用法详解

    2024-01-24 22:39:11
  • Python实现以主程序的形式执行模块

    2022-01-14 01:37:00
  • 基于Python制作打地鼠小游戏

    2022-04-07 09:13:34
  • 用python实现名片管理系统

    2022-03-27 09:34:33
  • js读取图片的宽和高

    2007-08-04 10:14:00
  • 数据库性能优化二:数据库表优化提升性能

    2024-01-22 12:07:19
  • asp之家 网络编程 m.aspxhome.com