python判斷是否為數(shù)字字符串的方法:1、通過創(chuàng)建自定義函數(shù)【is_number()】方法來判斷字符串是否為數(shù)字;2、可以使用內(nèi)嵌if語句來實現(xiàn)。
本教程操作環(huán)境:windows7系統(tǒng)、python3.9版,DELL G3電腦。
python判斷是否為數(shù)字字符串的方法:
1、通過創(chuàng)建自定義函數(shù) is_number()
方法來判斷字符串是否為數(shù)字:
實例
# -*- coding: UTF-8 -*- # Filename : test.py # author by : www.runoob.com 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 # 測試字符串和數(shù)字 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 # 測試 Unicode # 阿拉伯語 5 print(is_number('?')) # True # 泰語 2 print(is_number('?')) # True # 中文數(shù)字 print(is_number('四')) # True # 版權(quán)號 print(is_number('?')) # False
2、我們也可以使用內(nèi)嵌 if 語句來實現(xiàn):
執(zhí)行以上代碼輸出結(jié)果為:
False True True True True True True True False
3、