编程语言
首页 > 编程语言> > python 3的可靠isnumeric()函数是什么?

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

作者:互联网

我试图做一些应该非常简单的事情并检查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,regex,python-3-x,validation,isnumeric
来源: https://codeday.me/bug/20190714/1458980.html