python判断字符串是否存在空白、字母或数字
mystr = 'hello world and itcast and itheima and Python'
# isalpha():如果字符串至少有一个字符并且所有字符都是字母则返回True,否则返回False
print(mystr.isalpha()) # 有空格也会返回False
mystr1= 'hello'
mystr2= 'hello123'
mystr3= '1234'
print(mystr1.isalpha()) # False
# isdigit():如果字符串只包含数字,则返回True,否则返回False
print(mystr3.isdigit()) # True
# isalnum(): 如果字符串至少有一个字符并且所有字符都是字母或者数字,则返回True,否则返回False
print(mystr2.isalnum()) # True
# isspace():如果字符串中只包含空白,则返回True,否则返回False
print(' '.isspace()) # True