我做不到很坚强,但起码要让自己不再懦弱!人生最大的错误,是用健康换取身外之物,人生最大的悲哀,是用生命换取个人的烦恼,人生最大的浪费,是用生命解决自己制造的麻烦!
本文实例讲述了python通过自定义isnumber函数判断字符串是否为数字的方法。分享给大家供大家参考。具体如下:
''' isnumeric.py test a numeric string s if it's usable for int(s) or float(s) ''' def isnumeric(s): '''returns True if string s is numeric''' return all(c in "0123456789.+-" for c in s) # test module ... if __name__ == '__main__': print(isnumeric('123')) # True print(isnumeric('-123.45')) # True print(isnumeric('+3.14')) # True print(isnumeric('$99.95')) # False
希望本文所述对大家的Python程序设计有所帮助。
本文python通过自定义isnumber函数判断字符串是否为数字的方法到此结束。用微笑来证明你自己,我可以!小编再次感谢大家对我们的支持!