這篇文章主要介紹了在Python中處理字符串之isdigit()方法的使用,是Python入門學習中的基礎知識,需要的朋友可以參考下
isdigit()方法檢查字符串是否只包含數字(全由數字組成)。
語法
以下是isdigit()方法的語法:
?
1 str.isdigit()參數
NA
返回值
如果字符串中的所有字符都是數字,並至少有一個字符此方法返回true,否則返回false。
例子
下面的例子顯示了isdigit()方法的使用。
?
1 2 3 4 5 6 7 #!/usr/bin/python str = "123456"; # Only digit in this string print str.isdigit(); str = "this is string example....wow!!!"; print str.isdigit();當我們運行上面的程序,它會產生以下結果:
?
1 2 True False