Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将我数据库中的一些数据转换为 XLS (Excel) 格式。我曾经tablib这样做,并且可以获得正确格式的 Excel 工作表。
tablib
如何为我的 Excel 文件中的各个工作表指定名称?
导出到 Excel 时,工作表具有来自Dataset.title属性的名称(源代码)。
Dataset.title
您可以在Dataset构造函数中设置标题:
Dataset
dataset = Dataset(title="Sheet name")