當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String isnumeric()用法及代碼示例


Python isnumeric() 方法檢查字符串的所有字符是否都是數字字符。如果所有字符都為真,則返回 True,否則返回 False。

數字字符包括數字字符和所有具有 Unicode 數值屬性的字符。

簽名

isnumeric()

參數

不需要參數。

返回

它返回True或False。

讓我們看一些 isnumeric() 方法的例子來理解它的函數。

Python 字符串 isnumeric() 方法示例 1

在這裏,創建了一個簡單的示例來檢查字符串是否為數字。

# Python isnumeric() method example
# Variable declaration
str = "12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)

輸出:

True

Python 字符串 isnumeric() 方法示例 2

讓我們在非數字字符串上測試它,看看它返回 False。

# Python isnumeric() method example
# Variable declaration
str = "javatpoint12345"
# Calling function
str2 = str.isnumeric()
# Displaying result
print(str2)

輸出:

False

Python 字符串 isnumeric() 方法示例 3

看一個 senario 我們可以在哪裏以及如何在 python 編程中應用 isnumeric() 方法

# Python isnumeric() method example
str = "123452500" # True
if str.isnumeric() == True:
    print("Numeric")
else:
    print("Not numeric")
str2 = "123-4525-00" # False
if str2.isnumeric() == True:
    print("Numeric")
else:
    print("Not numeric")

輸出:

Numeric
Not numeric






相關用法


注:本文由純淨天空篩選整理自 Python String isnumeric() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。