gpt4 book ai didi

python - 如何从字符串中提取 float

转载 作者:太空宇宙 更新时间:2023-11-03 21:46:29 25 4
gpt4 key购买 nike

我有许多类似于 Current Level: 13.4 db. 的字符串我想只提取 float 。我说的是 float 而不是十进制,因为它有时是整数。 RegEx 可以做到这一点还是有更好的方法?

最佳答案

如果您的 float 始终以十进制表示法表示,例如

>>> import re
>>> re.findall("\d+\.\d+", "Current Level: 13.4db.")
['13.4']

可能就足够了。

更强大的版本是:

>>> re.findall(r"[-+]?(?:\d*\.*\d+)", "Current Level: -13.2db or 14.2 or 3")
['-13.2', '14.2', '3']

如果您想验证用户输入,您也可以通过直接单步执行来检查 float :

user_input = "Current Level: 1e100 db"
for token in user_input.split():
try:
# if this succeeds, you have your (first) float
print(float(token), "is a float")
except ValueError:
print(token, "is something else")

# => Would print ...
#
# Current is something else
# Level: is something else
# 1e+100 is a float
# db is something else

关于python - 如何从字符串中提取 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52452849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com