当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String isspace()用法及代码示例


如果字符串中只有空白字符,isspace() 方法将返回 True。如果不是,则返回 False。

用于间距的字符称为空白字符。例如:制表符、空格、换行符等。

用法:

string.isspace()

参数:

isspace() 方法不带任何参数。

返回:

isspace() 方法返回:

  • True 如果字符串中的所有字符都是空白字符
  • False 如果字符串为空或包含至少一个不可打印字符

示例 1:isspace() 的工作

s = '   \t'
print(s.isspace())

s = ' a '
print(s.isspace())

s = ''
print(s.isspace())

输出

True
False
False

示例 2:如何使用isspace()?

s = '\t  \n'
if s.isspace() == True:
  print('All whitespace characters')
else:
  print('Contains non-whitespace characters')
  
s = '2+2 = 4'

if s.isspace() == True:
  print('All whitespace characters')
else:
  print('Contains non-whitespace characters.')

输出

All whitespace characters
Contains non-whitespace characters

相关用法


注:本文由纯净天空筛选整理自 Python String isspace()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。