Python 3 教程 Python3 isdigit()方法

henson · 2022-03-13 18:11:51 · 热度: 12

描述

Python isdigit() 方法检测字符串是否只由数字组成。

语法

isdigit()方法语法:

str.isdigit()

参数

  • 无。

返回值

如果字符串只包含数字则返回 True 否则返回 False。

实例

以下实例展示了isdigit()方法的实例:

实例

#!/usr/bin/python3

str = "123456";
print (str.isdigit())

str = "Codercto example....wow!!!"
print (str.isdigit())

以上实例输出结果如下:

True
False

查看更多 Python 字符串内建函数

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册