Python isnumeric()方法
Python isnumeric()方法
Python isnumeric() 方法檢測(cè)字符串是否只由數(shù)字組成。這種方法是只針對(duì)unicode對(duì)象。
注:定義一個(gè)字符串為Unicode,只需要在字符串前添加 'u' 前綴即可,具體可以查看本章節(jié)例子。
語法
isnumeric()方法語法:
str.isnumeric()
參數(shù)
- 無。
返回值
如果字符串中只包含數(shù)字字符,則返回 True,否則返回 False
實(shí)例
以下實(shí)例展示了isnumeric()方法的實(shí)例:
#!/usr/bin/python str = u"this2009"; print str.isnumeric(); str = u"23443434"; print str.isnumeric();
以上實(shí)例輸出結(jié)果如下:
False True
相關(guān)文章
- Python Number 數(shù)字
- Python 列表 List
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 集合
- Python 隊(duì)列
- Python 高級(jí)鏈表
- Python 分而治之
- Python 圖算法
- Python3 解釋器
- Python3 注釋
- Python3 字典(Dictionary)
- Python3 模塊
- Python3 網(wǎng)絡(luò)編程
- Python min() 函數(shù)
- Python pow() 函數(shù)
- Python os.chdir() 方法
- Python os.ftruncate() 方法
- Python os.openpty() 方法
- Python islower()方法
- Python 字典 Dictionary values()方法