Python isdecimal()方法
Python isdecimal()方法
Python isdecimal() 方法检查字符串是否只包含十进制字符。这种方法只存在于unicode对象。
注意:定义一个十进制字符串,只需要在字符串前添加 'u' 前缀即可。
语法
isdecimal()方法语法:
str.isdecimal()
参数
- 无
返回值
如果字符串是否只包含十进制字符返回True,否则返回False。
实例
以下实例展示了 isdecimal()函数的使用方法:
#!/usr/bin/python str = u"this2009"; print str.isdecimal(); str = u"23443434"; print str.isdecimal();
以上实例输出结果如下:
False True
相关文章
- Python 循环语句
- Python Number 数字
- Python 元组
- Python XML 解析
- Python 哈希表
- Python3 注释
- Python3 模块
- Python abs() 函数
- Python round() 函数
- Python os.closerange() 方法
- Python os.mkdir() 方法
- Python os.rmdir() 方法
- Python os.stat() 方法
- Python os.tcgetpgrp() 方法
- Python encode()方法
- Python rfind()方法
- Python rindex()方法
- Python upper()方法
- Python time asctime()方法
- Python time clock()方法