isalpha
描述
isalpha函数检测字符串中是否只包含字母。如果全部是字母组成的字符串,则返回True,否则返回False。isalpha()函数没有任何参数。
语法
str.isalpha()
举例
1. 字符串中只包含字母
test = 'sdgsxxad'
print(test.isalpha())
结果返回
True
2. 字符串包含数字、符号和字母
test = 'sdgsxxad'
test2 = '3rfs3dfhw'
test3 = 'I love python'
test4 = 'nova-scheduler'
print(test.isalpha())
print(test2.isalpha())
print(test3.isalpha())
print(test4.isalpha())
返回值
True
False
False
False
相关阅读
用法: #include <ctype.h> int isalpha( int ch ); 功能:如果参数是字母字符,函数返回非零值,否则返回零值。 char c; sc