码迷,mamicode.com
首页 > 编程语言 > 详细

python函数--isdigit()方法

时间:2019-09-26 11:32:17      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:组成   参数   pytho   title   法语   gif   字符   blog   --   

isdigit()方法

描述:Python isdigit() 方法检测字符串是否只由数字组成。isdigit()方法语法:str.isdigit()参数:无。返回值:如果字符串只包含数字则返回 True 否则返回 False。

技术图片
技术图片
In [6]:‘123‘.isdigit()
Out[6]:True
In [7]:‘aa234‘.isdigit()
Out[7]:False
In [8]:‘①②③‘.isdigit()
Out[8]:True
In [10]:"中文".isdigit()
Out[10]:False
In [11]:‘12+6‘.isdigit()
Out[11]:False
技术图片
技术图片

python函数--isdigit()方法

标签:组成   参数   pytho   title   法语   gif   字符   blog   --   

原文地址:https://www.cnblogs.com/hanjiali/p/11589565.html

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