Python 字符串 isspace()方法

Python 字符串 isspace()方法

Python isspace() 方法用于检查字符串中的空格。如果字符串中只包含空白字符,则返回true。否则返回false。空格、换行和制表符等被称为空白字符,并在Unicode字符数据库中定义为 Other或Separator

语法

isspace()

参数

不需要参数。

返回值

返回 True 或 False。

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

示例1

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

输出:

True

示例2

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

输出:

False

示例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

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程