码迷,mamicode.com
首页 > 其他好文 > 详细

isdigit()方法

时间:2018-12-15 15:50:50      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:dig   str   als   参数   span   python   语法   div   sdi   

isdigit()方法

描述

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

语法

isdigit()方法语法:

str.isdigit()

参数

  • 无。

返回值

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

实例

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

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

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

# 结果为
# True
# False

 

isdigit()方法

标签:dig   str   als   参数   span   python   语法   div   sdi   

原文地址:https://www.cnblogs.com/xiaohei001/p/10123363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!