Python3 isalpha()方法

Python3 字符串 Python3 字符串


描述

Python isalpha() 方法检测字符串是否只由字母组成。

语法

isalpha()方法语法:

str.isalpha()

参数

  • 无。

返回值

如果字符串至少有一个字符并且所有字符都是字母则返回 True,否则返回 False

实例

以下实例展示了isalpha()方法的实例:

#!/usr/bin/python3

str = "python" #纯字母的字符串
print (str.isalpha())

str = "编程狮" #中文字符串
print (str.isalpha())

str = "W3CSchool example....wow!!!"# 有字母,数字,其他符号的字符串
print (str.isalpha())

以上实例输出结果如下:

True
True
False

Python3 字符串 Python3 字符串