Python isnumeric()方法
Python isnumeric()方法
Python isnumeric() 方法检测字符串是否只由数字组成。这种方法是只针对unicode对象。
注:定义一个字符串为Unicode,只需要在字符串前添加 'u' 前缀即可,具体可以查看本章节例子。
语法
isnumeric()方法语法:
str.isnumeric()
参数
- 无。
返回值
如果字符串中只包含数字字符,则返回 True,否则返回 False
实例
以下实例展示了isnumeric()方法的实例:
#!/usr/bin/python str = u"this2009"; print str.isnumeric(); str = u"23443434"; print str.isnumeric();
以上实例输出结果如下:
False True
相关文章
- Python Number 数字
- Python 列表 List
- Python 数据结构
- Python 集合
- Python 队列
- Python 高级链表
- Python 分而治之
- Python 图算法
- Python3 解释器
- Python3 注释
- Python3 字典(Dictionary)
- Python3 模块
- Python3 网络编程
- Python min() 函数
- Python pow() 函数
- Python os.chdir() 方法
- Python os.ftruncate() 方法
- Python os.openpty() 方法
- Python islower()方法
- Python 字典 Dictionary values()方法