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