group.to_excel(writer, sheet_name='-'.join(map(str, name)))
时间: 2023-06-07 19:11:08 浏览: 39
openssl-1.0.1e-16.el6_5.14.x86_64.rpm
这是一个Python代码的语句,用于将一个pandas数据表格保存为Excel文件。具体来说,它将数据表格保存到指定的Excel写入器(writer)中,所指定的sheet名为由name变量中的所有元素用短横线连接而成的字符串。
阅读全文