Python3 isnumeric()方法
Python 3 教程
· 2019-02-05 22:29:43
描述
isnumeric() 方法检测字符串是否只由数字组成。这种方法是只针对unicode对象。
注:定义一个字符串为Unicode,只需要在字符串前添加 'u' 前缀即可,具体可以查看本章节例子。
语法
isnumeric()方法语法:
str.isnumeric()
参数
- 无。
返回值
如果字符串中只包含数字字符,则返回 True,否则返回 False
实例
以下实例展示了isnumeric()方法的实例:
#!/usr/bin/python3 str = "codercto2016" print (str.isnumeric()) str = "23443434" print (str.isnumeric())
以上实例输出结果如下:
False True
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html
Wikis For Dummies
Dan Woods、Peter Thoeny / For Dummies / 2007-7-23 / USD 24.99
Corporations have finally realized the value of collaboration tools for knowledge sharing and Wiki is the open source technology for creating collaborative Web sites, as either a public site on the In......一起来看看 《Wikis For Dummies》 这本书的介绍吧!