Python isspace()方法

返回值
如果字符串中只包含空格,则返回 True,否则返回 False.

案例:

str = "       " 
print (str.isspace())
 
str = "Runoob example....wow!!!"
print (str.isspace())

结果:

True
False

你可能感兴趣的:(study)