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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。