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.
我正在做一个项目,我们正在用 pyexcel 替换 xlwt。使用 xlwt,有很多方法可以在 pyexcel 中设置单元格、列等样式,还有很多格式化程序的参考,例如:
sheet.column.format(col_index, formatter=some_object)
但我找不到这些对象是什么的参考。此外,还有对数据类型的引用,但我不确定所述数据类型的有效值是什么。
您能提供的任何帮助将不胜感激!
对于 excel 文件,默认情况下,数字始终被读取为浮点数,您可以将它们转换为以下字符串:
sheet.column.format(0, str)
至于formatter = some_object,我认为您可以使用 python 提供的任何数据类型关键字,例如float,str.... 我希望这可以帮助你。
formatter = some_object
float,str...