gpt4 book ai didi

python - python 3 的可靠 isnumeric() 函数是什么?

转载 作者:太空狗 更新时间:2023-10-30 01:46:24 27 4
gpt4 key购买 nike

我正在尝试做一些应该非常简单的事情,并检查 Entry 字段中的值是否是有效且真实的数字。 str.isnumeric() 方法不考虑“-”负数或“.”。十进制数。

我尝试为此编写一个函数:

def IsNumeric(self, event):
w = event.widget
if (not w.get().isnumeric()):
if ("-" not in w.get()):
if ("." not in w.get()):
w.delete(0, END)
w.insert(0, '')

在您返回并在其中键入字母之前,这一切都很好。然后就失败了。

我研究了使用 .split() 方法的可能性,但我找不到可靠的正则表达式来处理它。

这是一件非常正常的事情,需要完成。有什么想法吗?

最佳答案

try:
float(w.get())
except ValueError:
# wasn't numeric

关于python - python 3 的可靠 isnumeric() 函数是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30855314/

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