Python isspace() 方法
Python 字符串对象的 isspace() 方法用于检测字符串是否只由空白符组成
语法
str.isspace()
参数
无
返回值
如果字符串中只包含空格,则返回 True,否则返回 False
范例
下面的代码使用 isspace() 方法检测字符串是否全部为空白符
>>> ' \r\n\t '.isspace() True >>> ' a \r\n\t '.isspace() False
Python 字符串对象的 isspace() 方法用于检测字符串是否只由空白符组成
str.isspace()
无
如果字符串中只包含空格,则返回 True,否则返回 False
下面的代码使用 isspace() 方法检测字符串是否全部为空白符
>>> ' \r\n\t '.isspace() True >>> ' a \r\n\t '.isspace() False
♥ 简单教程,简单编程 - IT 入门首选站
Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.