Python isalpha()方法
Python isalpha()方法
Python isalpha() 方法检测字符串是否只由字母组成。
语法
isalpha()方法语法:
str.isalpha()
参数
- 无。
返回值
如果字符串至少有一个字符并且所有字符都是字母则返回 True,否则返回 False。
实例
以下实例展示了isalpha()方法的实例:
#!/usr/bin/python # coding=utf-8 str = "cofdebaoku"; print str.isalpha(); str = "cofdebaoku<a href="http://www.yapf.com" target="_blank">硕编程</a>"; print str.isalpha(); str = "this is string example....wow/b64/"; print str.isalpha();
以上实例输出结果如下:
True False False
相关文章
- Python 基础语法
- Python while 循环语句
- Python Number 数字
- Python File 方法
- Python 异常处理
- Python 数组
- 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() 方法