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