摘要:
插入一列 .insert_cols(idx=数字编号) 插入多列 .insert_cols(idx=数字编号,amount=要插入的列数) 插入一行 .insert_rows(idx=数字编号) 插入多行 .insert_rows(idx=数字编号,amount=要插入的行数) 删除列 .delet 阅读全文
2022年10月30日 #
摘要:
1.创建工作簿和工作表 workbook=openpyxl.Workbook() #创建工作簿 sheet=workbook.create_sheet() #创建工作表 2.向某个格子写入内容 sheet[‘A1’]=‘hello,Python’ 3.用某个格子写入内容 cell.value=‘he 阅读全文
摘要:
#3.4 课堂小案例_找到41码鞋子的坐标 #coding:utf-8 import openpyxl workbook=openpyxl.load_workbook('京东鞋子评论信息.xlsx') sheet=workbook['评论信息'] cols=sheet['D'] #获取D列数据 co 阅读全文