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()方法