📅  最后修改于: 2020-10-30 06:25:42             🧑  作者: Mango
Python的isspace()方法用于检查字符串的空间。如果字符串中仅包含空格字符,则返回true。否则,它返回false。空格,换行符和制表符等称为空白字符,并且在Unicode字符数据库中定义为“其他”或“分隔符”。
isspace()
不需要任何参数。
它返回True或False。
我们来看一些isspace()方法的示例,以了解其功能。
# Python isspace() method example
# Variable declaration
str = " " # empty string
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)
输出:
True
# Python isspace() method example
# Variable declaration
str = "ab cd ef" # string contains spaces
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)
输出:
False
isspace()方法对所有空白都返回true,例如:
# Python isspace() method example
# Variable declaration
str = " " # string contains space
if str.isspace() == True:
print("It contains space")
else:
print("Not space")
str = "ab cd ef \n"
if str.isspace() == True:
print("It contains space")
else:
print("Not space")
str = "\t \r \n"
if str.isspace() == True:
print("It contains space")
else:
print("Not space")
输出:
It contains space
Not space
It contains space