isspace()方法

isspace()方法

描述

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

语法

isspace()方法语法:

str.isspace()

参数

  • 无。

返回值

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

实例

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

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

str = "Runoob example....wow!!!"
print (str.isspace())

# 结果为
# True
# False

空白符包含:空格、制表符(\t)、换行(\n)、回车等(\r)

# \t\r\n 都是空白符
print (' \t\r\n'.isspace()) # True
print ('\0'.isspace()) # False
print (' a '.isspace()) # False

空串不算空白符:
print("".isspace()) # False

猜你喜欢

转载自www.cnblogs.com/xiaohei001/p/10123432.html