Python 3 教程教程
Python3 isspace()方法
Python3 isspace()方法
Python3 isspace()方法
描述
Python isspace() 方法检测字符串是否只由空白字符组成。
语法
isspace() 方法语法:
str.isspace()
参数
- 无。
返回值
如果字符串中只包含空格,则返回 True,否则返回 False.
实例
以下实例展示了isspace()方法的实例:
实例
#!/usr/bin/python3
str = " "
print (str.isspace())
str = "verydoc example....wow!!!"
print (str.isspace())
以上实例输出结果如下:
True False
Python3 isspace()方法 |
---|
Python 3 教程
Python的3.0版本,常被称为Python 3000,或简称Py3k。相对于Python的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0在设计的时候没有考虑向下兼容。