在python中自动处理e(科学)表示法中的数字

发布于 2024-11-17 05:44:49 字数 240 浏览 0 评论 0原文

我正在从质谱仪读取数据文件,许多数字都是 e 形式,例如

4096.26 5.785e1
4096.29 5.784e1
4096.31 5.784e1
4096.33 5.784e1
4096.36 5.783e1

我计划使用 split 函数来获取两个数字,但我想知道是否有一个函数可以将第二列转换为蟒蛇漂浮?我知道我可以用正则表达式来做到这一点,但我认为可能有更好的方法

谢谢

I am reading in data files from a mass spectrometer and many of the numbers are in e form e.g.

4096.26 5.785e1
4096.29 5.784e1
4096.31 5.784e1
4096.33 5.784e1
4096.36 5.783e1

I am planning on using the split function to get the two numbers out, but I wanted to know is there a function to convert the second column into python floats? I know I could do it with regular expressions but thought there might be a better way

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月亮邮递员 2024-11-24 05:44:49

float() 构造函数将接受 e 表示法中的字符串:

>>> float("5.785e1")
57.85

因此您可以简单地使用 map(float, line.split()) 进行转换一个文本行到一个浮点数列表。

The float() constructor will accept strings in e notation:

>>> float("5.785e1")
57.85

So you can simply use map(float, line.split()) to convert a text line to a list of floats.

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