rank | ▲ | ✰ | vote | url |
---|---|---|---|---|
41 | 487 | 108 | 705 | url |
如果一个字符串可以被看做一个数字那么有什么好的方法可以检测出来?
我能想到的方法:
def is_number(s):
try:
float(s)
return True
except ValueError:
return False
我还没有想到什么更好的方法.
对字符串对象用isdigit()
方法:
>>> a = "03523"
>>> a.isdigit()
True
>>> b = "963spam"
>>> b.isdigit()
False
同样也有unicode的方法,但是我不太熟悉Unicode - Is decimal/decimal