Python isdecimal()方法
Python isdecimal()方法
Python isdecimal() 方法檢查字符串是否只包含十進(jìn)制字符。這種方法只存在于unicode對(duì)象。
注意:定義一個(gè)十進(jìn)制字符串,只需要在字符串前添加 'u' 前綴即可。
語(yǔ)法
isdecimal()方法語(yǔ)法:
str.isdecimal()
參數(shù)
- 無(wú)
返回值
如果字符串是否只包含十進(jìn)制字符返回True,否則返回False。
實(shí)例
以下實(shí)例展示了 isdecimal()函數(shù)的使用方法:
#!/usr/bin/python str = u"this2009"; print str.isdecimal(); str = u"23443434"; print str.isdecimal();
以上實(shí)例輸出結(jié)果如下:
False True
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python Number 數(shù)字
- Python 元組
- Python XML 解析
- Python 哈希表
- Python3 注釋
- Python3 模塊
- Python abs() 函數(shù)
- Python round() 函數(shù)
- 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()方法