Python isspace() 方法用于检查字符串中的空格。如果字符串中只有空白字符,则返回 true。否则返回false。空格、换行符和制表符等被称为空白字符,在 Unicode 字符数据库中被定义为其他或分隔符。
签名
isspace()
参数
不需要参数。
返回
它返回True或False。
让我们看一些 isspace() 方法的例子来理解它的函数。
Python 字符串 isspace() 方法示例 1
# Python isspace() method example
# Variable declaration
str = " " # empty string
# Calling function
str2 = str.isspace()
# Displaying result
print(str2)
输出:
True
Python 字符串 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 字符串 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
相关用法
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isspace() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。