Python isdigit()方法
Python isdigit()方法
Python isdigit() 方法檢測字符串是否只由數(shù)字組成。
語法
isdigit()方法語法:
str.isdigit()
參數(shù)
- 無。
返回值
如果字符串只包含數(shù)字則返回 True 否則返回 False。
實例
以下實例展示了isdigit()方法的實例:
#!/usr/bin/python str = "123456"; # Only digit in this string print str.isdigit(); str = "this is string example....wow/b64/"; print str.isdigit();
以上實例輸出結(jié)果如下:
True False
相關(guān)文章
- Python 教程
- Python 簡介
- Python 變量類型
- Python GUI編程 Tkinter
- Python 搜索算法
- Python3 運算符
- Python3 字符串(String)
- Python3 作用域
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動
- Python File readlines() 方法
- Python File seek() 方法
- Python File truncate() 方法
- Python os.closerange() 方法
- Python os.link() 方法
- Python os.stat() 方法
- Python os.stat_float_times() 方法
- Python max()方法
- Python splitlines()方法
- Python title()方法
- Python time mktime()方法