赞
踩
目录
在python中查看openpyxl模块可执行的Excel文件的命令
sheet.append(Python列表)
导入模块:from openpyxl.utils import FORMULAE
sheet.insert_cols(idx=数字编号)
在第一列前插入一列
sheet.insert_cols(idx=数字编号, amount=要插入的列数)
sheet.insert_rows(idx=数字编号)
在第三行前插入一行
sheet.insert_rows(idx=数字编号, amount=要插入的行数)
在第三行前插入三行
sheet.delete_cols(idx=数字编号, amount=要删除的列数)
sheet.delete_rows(idx=数字编号, amount=要删除的行数)
sheet.move_range('A3:B8', rows=2, cols=2)
例:将B4:C7的单元格向下移动三行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。