Python3 isdigit()方法
Python 3 教程
· 2019-02-05 21:58: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 3 教程 文章: https://codercto.com/courses/l/10.html
R Cookbook
Paul Teetor / O'Reilly Media / 2011-3-22 / USD 39.99
With more than 200 practical recipes, this book helps you perform data analysis with R quickly and efficiently. The R language provides everything you need to do statistical work, but its structure ca......一起来看看 《R Cookbook》 这本书的介绍吧!