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