isspace功能
判断字符串是否是一个由空格组成的字符串
str = ' '
newstr = str.isspace()
print(newstr)
返回True
str2 = 'hello word'
newstr2 = str2.isspace()
print(newstr2)
返回False
判断字符串是否是一个由空格组成的字符串
str = ' '
newstr = str.isspace()
print(newstr)
返回True
str2 = 'hello word'
newstr2 = str2.isspace()
print(newstr2)
返回False