且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

python xlsxwriter 从单元格中提取值

更新时间:2023-02-13 18:09:54

是否可以提取我写入 xlsxwriter.worksheet 的数据?

Is it possible to extract data that I've written to a xlsxwriter.worksheet?

没有.XlsxWriter 是只写的.如果您需要跟踪数据,则需要在 XlsxWriter 之外的自己的代码中进行.

No. XlsxWriter is write only. If you need to keep track of your data you will need to do it in your own code, outside of XlsxWriter.