Python isspace()方法
Python isspace()方法
Python isspace() 方法检测字符串是否只由空格组成。
语法
isspace()方法语法:
str.isspace()
参数
- 无。
返回值
如果字符串中只包含空格,则返回 True,否则返回 False。
实例
以下实例展示了isspace()方法的实例:
#!/usr/bin/python str = " "; print str.isspace(); str = "This is string example....wow/b64/"; print str.isspace();
以上实例输出结果如下:
True False
相关文章
- Python 基础语法
- Python 变量类型
- Python 函数
- Python 文件I/O
- Python 正则表达式
- Python 节点
- Python3 基础语法
- Python3 模块
- Python3 文件读写
- Python3 XML 解析
- Python3 JSON 解析
- Python fabs() 函数
- Python shuffle() 函数
- Python File readline() 方法
- Python os.chflags() 方法
- Python os.fchown() 方法
- Python rindex()方法
- Python List remove()方法
- Python 字典 Dictionary str()方法
- Python time localtime()方法