group.to_excel(writer, sheet_name='_'.join(name), index=False) TypeError: sequence item 2: expected str instance, numpy.int64 found
时间: 2023-06-08 11:05:34 浏览: 171
TypeError: unsupported format string passed to NoneType.__format__
5星 · 资源好评率100%
这个错误是因为 '_'.join(name) 中的 name 中有一个 numpy.int64 类型的变量,而 join 函数只能接受 str 类型的变量。解决方法是将该变量转换为 str 类型,例如使用 str() 函数。修改后的代码可以是:group.to_excel(writer, sheet_name='_'.join(str(name)), index=False)。
阅读全文