Python3 string.isdigit()方法

2019-10-16 23:11:03
isdigit() 方法檢查字串是否只包含數位。

語法

以下是 isdigit() 方法的語法 -
str.isdigit()

引數

  • NA

返回值

如果在字串中的所有字元是數位,並 str 至少有一個字元此方法返回true,否則返回 false。

範例

下面的範例顯示 isdigit() 方法的使用。
#!/usr/bin/python3

str = "123456";  # Only digit in this string
print (str.isdigit())

str = "this is string example....wow!!!"
print (str.isdigit())
當我們執行上面的程式,會產生以下結果 -
True
False