Python String isspace() 方法
Python isspace() 方法检测字符串是否只由空白字符组成。
Python String isspace() 语法
isspace() 方法语法:
str.isspace()
Python String isspace() 参数
- 无。
Python String isspace() 返回值
如果字符串中只包含空格,则返回 True,否则返回 False.
Python String isspace() 示例1
以下实例展示了isspace()方法的实例:
#!/usr/bin/python3
str1 = " "
print (str1.isspace())
str1 = "Apidemos example....wow!"
print (str1.isspace())
输出: