Python字串isdigit()
方法檢查字串是否僅由數位組成。
語法
以下是isdigit()
方法的語法 -
str.isdigit()
引數
返回值
true
,否則返回false
。範例
以下範例顯示了isdigit()
方法的用法。
#!/usr/bin/python3
str = "1231234"; # Only digit in this string
print (str.isdigit())
str = "this is string example....wow!!!"
print (str.isdigit())
當執行上面的程式,它產生以下結果 -
True
False