Python isalpha()方法
Python isalpha()方法
Python isalpha() 方法檢測(cè)字符串是否只由字母組成。
語(yǔ)法
isalpha()方法語(yǔ)法:
str.isalpha()
參數(shù)
- 無(wú)。
返回值
如果字符串至少有一個(gè)字符并且所有字符都是字母則返回 True,否則返回 False。
實(shí)例
以下實(shí)例展示了isalpha()方法的實(shí)例:
#!/usr/bin/python # coding=utf-8 str = "cofdebaoku"; print str.isalpha(); str = "cofdebaoku<a href="http://www.slktour.com" target="_blank">碩編程</a>"; print str.isalpha(); str = "this is string example....wow/b64/"; print str.isalpha();
以上實(shí)例輸出結(jié)果如下:
True False False
相關(guān)文章
- Python 基礎(chǔ)語(yǔ)法
- Python while 循環(huán)語(yǔ)句
- Python Number 數(shù)字
- Python File 方法
- Python 異常處理
- Python 數(shù)組
- Python Deque
- Python3 注釋
- Python3 迭代器
- Python os.dup2() 方法
- Python os.fstatvfs() 方法
- Python os.lchflags() 方法
- Python os.lchown() 方法
- Python isalnum()方法
- Python max()方法
- Python rindex()方法
- Python splitlines()方法
- Python List sort()方法
- Python 字典 Dictionary get()方法
- Python time strftime() 方法