首页 > 编程语言 > 详细

Python if not

时间:2020-01-15 19:53:33      阅读:68      评论:0      收藏:0      [点我收藏+]

原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/12198115.html

 

空列表,空字典,空元组

技术分享图片

 

空字符创,空白字符串,False,True,None

技术分享图片

0, 非0

技术分享图片

 

Summary

None,False,0,空列表[],空字典{},空元祖(),空字符串(不是空白字符串)都相当于false

所以Python中判定字符串是否为空的方法示例如下

def is_blank(input_str):
    return not (input_str and input_str.strip())


def is_not_blank(input_str):
    return bool(input_str and input_str.strip())

Python if not

原文:https://www.cnblogs.com/agilestyle/p/12198115.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!