蓝绝

博客园 首页 新随笔 联系 订阅 管理

2022年10月30日 #

摘要: 插入一列 .insert_cols(idx=数字编号) 插入多列 .insert_cols(idx=数字编号,amount=要插入的列数) 插入一行 .insert_rows(idx=数字编号) 插入多行 .insert_rows(idx=数字编号,amount=要插入的行数) 删除列 .delet 阅读全文
posted @ 2022-10-30 21:59 蓝绝 阅读(248) 评论(0) 推荐(0) 编辑

摘要: 1.创建工作簿和工作表 workbook=openpyxl.Workbook() #创建工作簿 sheet=workbook.create_sheet() #创建工作表 2.向某个格子写入内容 sheet[‘A1’]=‘hello,Python’ 3.用某个格子写入内容 cell.value=‘he 阅读全文
posted @ 2022-10-30 21:37 蓝绝 阅读(1634) 评论(0) 推荐(0) 编辑

摘要: #3.4 课堂小案例_找到41码鞋子的坐标 #coding:utf-8 import openpyxl workbook=openpyxl.load_workbook('京东鞋子评论信息.xlsx') sheet=workbook['评论信息'] cols=sheet['D'] #获取D列数据 co 阅读全文
posted @ 2022-10-30 20:53 蓝绝 阅读(23) 评论(0) 推荐(0) 编辑