isnumeric() 方法檢查字串是否只包含數位字元。這種方法目前只在Unicode物件中使用。
註:不像Python 2,在Python3所有的字串都是Unicode格式,請看下面的例子。
語法
以下是 isnumeric() 方法的語法-
str.isnumeric()
引數
返回值
如果字串中的所有字元是數位則該方法返回 true,否則返回 false。
範例
下面的範例顯示 isnumeric()方法的使用。
#!/usr/bin/python3
str = "this2016"
print (str.isnumeric())
str = "23443434"
print (str.isnumeric())
當我們執行上面的程式,會產生以下結果 -
False
True