📜  Python string.isspace()方法

📅  最后修改于: 2020-10-30 06:25:42             🧑  作者: Mango

Python字符串isspace()方法

Python的isspace()方法用于检查字符串的空间。如果字符串中仅包含空格字符,则返回true。否则,它返回false。空格,换行符和制表符等称为空白字符,并且在Unicode字符数据库中定义为“其他”或“分隔符”。

签名

isspace()

参量

不需要任何参数。

返回

它返回True或False。

我们来看一些isspace()方法的示例,以了解其功能。

Python String isspace()方法示例1

# Python isspace() method example
# Variable declaration
str = " " # empty string
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)

输出:

True

Python String isspace()方法示例2

# Python isspace() method example
# Variable declaration
str = "ab cd ef" # string contains spaces
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)

输出:

False

Python String isspace()方法示例3

isspace()方法对所有空白都返回true,例如:

  • ‘ ‘ – 空间
  • ‘\ t’-水平标签
  • ‘\ n’-换行符
  • ‘\ v’-垂直标签
  • ‘\ f’-提要
  • ‘\ r’-回车

# 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