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()方法