Python Excel 使用 xlrd 解析数据
相当简单;我已经从 Excel 文件中获取了所需的数据,但似乎在 XLRD 自述文件 解释了如何从 this:
xldate:40397.007905092592
number:10000.0
text:u'No'
number:0.1203
number:0.096000000000000002
number:0.126
转到各自的 python 数据类型。有什么想法吗?
Fairly simple; I've got the data I want out of the excel file, but can't seem to find anything inside the XLRD readme that explains how to go from this:
xldate:40397.007905092592
number:10000.0
text:u'No'
number:0.1203
number:0.096000000000000002
number:0.126
to their respective python datatypes. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尝试过文档帮助吗 --> 日期函数
did you tried the documentation help --> date_function
我遇到了同样的问题,并使用以下方法作为最后的手段:
将“数字对象”转换为浮点数。
I had the same issue and used the following as a last resort:
for converting the 'number object' to float.