所以我遇到了带有openpxyl的remove_sheet()的问题,我无法找到答案.当我运行以下代码时:
import openpyxl
wb = openpyxl.Workbook()
ws = wb.create_sheet("Sheet2")
wb.get_sheet_names()
['Sheet','Sheet2']
wb.remove_sheet('Sheet')
我收到以下错误:
ValueError: list.remove(x): x not in list
它不起作用,即使我尝试wb.remove_sheet(0)或wb.remove_sheet(1),我得到相同的错误.有什么我想念的吗?
解决方法:
DeprecationWarning:调用已弃用的函数get_sheet_by_name(使用wb [sheetname]).
xlsx = Workbook()
xlsx.create_sheet('other name')
xlsx.remove(xlsx['Sheet'])
xlsx.save('some.xlsx')