python如何判斷是否為數位字串

2021-03-02 19:01:22

python判斷是否為數位字串的方法:1、通過建立自定義函數【is_number()】方法來判斷字串是否為數位;2、可以使用內嵌if語句來實現。

本教學操作環境:windows7系統、python3.9版,DELL G3電腦。

python判斷是否為數位字串的方法:

1、通過建立自定義函數 is_number() 方法來判斷字串是否為數位:

範例

# -*- 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
 
# 測試字串和數位
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
# 中文數位
print(is_number('四')) # True
# 版權號
print(is_number('©'))  # False

2、我們也可以使用內嵌 if 語句來實現:

執行以上程式碼輸出結果為:

False
True
True
True
True
True
True
True
False

3、更多方法

Python isdigit() 方法檢測字串是否只由數位組成。

Python isnumeric() 方法檢測字串是否只由數位組成。這種方法是隻針對unicode物件。

相關免費學習推薦:

以上就是python如何判斷是否為數位字串的詳細內容,更多請關注TW511.COM其它相關文章!