可能重复:
How do I check if a string is a number in Python?
Python - Parse String to Float or Int
例如,我想检查字符串,如果它不能转换为整数(带int()
),我该如何检测?
答案 0 :(得分:46)
>>> '123'.isdigit()
True
>>> '1a23'.isdigit()
False
引用文档:
如果字符串中的所有字符都是数字且至少有一个字符,则返回true,否则返回false。
对于unicode
字符串或Python 3字符串,您需要使用更精确的定义并使用unicode.isdecimal()
/ str.isdecimal()
代替;并非所有Unicode数字都可解释为十进制数字。 U+00B2 SUPERSCRIPT 2是一个数字,但不是小数,例如。
答案 1 :(得分:32)
您可以随时try
:
try:
a = int(yourstring)
except ValueError:
print "can't convert"
请注意,如果您想知道是否可以使用isdigit
float