Python Excel 使用 xlrd 解析数据

发布于 2024-09-18 21:46:15 字数 344 浏览 7 评论 0原文

相当简单;我已经从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半夏半凉 2024-09-25 21:46:15

您尝试过文档帮助吗 --> 日期函数

did you tried the documentation help --> date_function

烟柳画桥 2024-09-25 21:46:15

我遇到了同样的问题,并使用以下方法作为最后的手段:

def numobj2fl(p):
    return float(str(p).split(":")[1])

将“数字对象”转换为浮点数。

I had the same issue and used the following as a last resort:

def numobj2fl(p):
    return float(str(p).split(":")[1])

for converting the 'number object' to float.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文