string.isspace()

Python 字符串 Python 字符串

描述

Python isspace() 方法检测字符串是否只由空格组成。

语法

isspace()方法语法:

str.isspace()
wζ3ζxζuζe.com提供本在线速查手册,请勿盗用!

参数

返回值

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

实例

以下实例展示了isspace()方法的实例:

#!/usr/bin/python

str = "       "; 
print str.isspace();

str = "This is string example....wow!!!";
print str.isspace();
wζ3ζxζuζe.com提供本在线速查手册,请勿盗用!

以上实例输出结果如下:

True
False
wζ3ζxζuζe.com提供本在线速查手册,请勿盗用!

Python 字符串 Python 字符串