python 判断字符串是否为数字

2021-01-29 23:16

阅读:607

标签:error   false   error:   foo   play   als   pass   except   ror   

code

def is_number(s):
    try:
        float(s)
        return True
    except ValueError:
        pass
    return False
# 测试字符串和数字
print(is_number(foo))   # False
print(is_number(1))     # True
print(is_number(1.3))   # True
print(is_number(-1.37)) # True
print(is_number(1e3))   # True

 

 

 

 

 

 

python 判断字符串是否为数字

标签:error   false   error:   foo   play   als   pass   except   ror   

原文地址:https://www.cnblogs.com/sea-stream/p/12822060.html


评论


亲,登录后才可以留言!