gpt4 book ai didi

python - 有理数的 isDigit()?

转载 作者:太空狗 更新时间:2023-10-30 02:23:52 25 4
gpt4 key购买 nike

我正在尝试评估我界面的文本框之一中的字符串是否为数字(即不是文本或其他任何内容)。在 Python 中,有一个名为 isdigit() 的方法,如果字符串仅包含数字(没有负号或小数点),该方法将返回 True。是否有另一种方法可以评估我的字符串是否为有理数(例如:1.25)。

示例代码:

if self.components.txtZoomPos.text.isdigit():
step = int(self.components.txtZoomPos.text)

最佳答案

1.25 是 reals 常用的符号, 对于 rational numbers 则更少. Python 的 float将提出 ValueError转换失败时。因此:

def isReal(txt):
try:
float(txt)
return True
except ValueError:
return False

关于python - 有理数的 isDigit()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/888925/

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