python 判断字符串是否为数字
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 判断字符串是否为数字相关的知识,希望对你有一定的参考价值。
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 判断字符串是否为数字的主要内容,如果未能解决你的问题,请参考以下文章