码迷,mamicode.com
首页 > 编程语言 > 详细

python 判断字符串是否为数字

时间:2020-05-03 16:55:03      阅读:56      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!