python判断一个字符串是否是数字
Posted 芽衣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python判断一个字符串是否是数字相关的知识,希望对你有一定的参考价值。
def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata unicodedata.numeric(s) return True except (TypeError, ValueError): pass return False str = ‘1109‘ if is_number(str): print(‘is number‘) else: print(‘is not number‘)
以上是关于python判断一个字符串是否是数字的主要内容,如果未能解决你的问题,请参考以下文章