AttributeError:“工作表”对象没有属性“delete_rows”

问题描述 投票:0回答:0

导入openpyxl

wb = openpyxl.load_workbook(路径)

ws = wb['Sheet1']

ws.delete_rows(8) // 假设我想删除第 8 行

此时我收到错误 AttributeError: 'Worksheet' 对象没有属性 'delete_rows'

P.S - 我知道这个问题已经存在但是没有用而且我没有足够的声誉在那里发表评论

python-3.x openpyxl
© www.soinside.com 2019 - 2024. All rights reserved.