我有以下几行代码来读取和编写excel: df = pd.read_excel(file_path, sheet_name, header=[0, 1])
df.to_excel(output_path, index=False) 当它尝试写入excel时,我得到以下错误: NotImplementedError: Writing to Excel with MultiIndex columns and no index ('index'=False) is not yet implemented 我不知道为什么会发生这种情况,我在网上也找不到具体的答案。 请帮帮忙。