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

Python中的 isdigit()方法

时间:2016-05-27 14:37:15      阅读:586      评论:0      收藏:0      [点我收藏+]

标签:

Python isdigit()方法

sdigit()方法就是检测字符串是否只有数字组成,


如果字符串中是只有数字组成,则返回true,

如果字符串中有其他字符,则返回false。

语法格式是:  str.isdigit()

#!/usr/bin/python

str = "123456";  # Only digit in this string
print str.isdigit();

str = "this is string example....wow!!!";
print str.isdigit();
输出结果:
True
False

 

Python中的 isdigit()方法

标签:

原文地址:http://www.cnblogs.com/xuchunlin/p/5534439.html

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