创新互联Python教程:Pythonisspace()

python 中的isspace()函数有助于检查字符串中的所有字符是否都是空白字符。如果字符串中充满空白字符(制表符、空格、换行符等),则该函数返回 true。)否则返回 false。

 **string.isspace()** 

isspace()参数:

isspace()方法不接受任何参数。

isspace()返回值

返回值始终是布尔值。如果字符串为空,函数返回假。

| 投入 | 返回值 | | 所有空白字符 | 真实的 | | 至少一个非空白字符 | 错误的 |

Python 中isspace()方法的示例

示例isspace()在 Python 中是如何工作的?

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

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

string = ''
print(string.isspace()) 

输出:

 True
False
False 

示例 2:如何在 Python 中使用isspace()

 string = '\t  \n'
if string.isspace() == True:
  print('String full of whitespace characters')
else:
  print('String contains non-whitespace characters')

string = '15+3 = 18'

if string.isspace() == True:
  print('String full of whitespace characters')
else:
  print('String contains non-whitespace characters.') 

输出:

 String full of whitespace characters
String contains non-whitespace characters 

网站栏目:创新互联Python教程:Pythonisspace()
当前链接:http://www.csdahua.cn/qtweb/news13/387663.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网