[python]Python 中 if not 用法
Posted 陶士涵的菜地
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python]Python 中 if not 用法相关的知识,希望对你有一定的参考价值。
在python 判断语句中 None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()都相当于 False
not None == not False == not ‘‘ == not 0 == not [] == not {} == not ()
需要注意的是‘0‘这个进行判断返回的是true
def test(val): if not val: print ‘not‘ else: print ‘yes‘ test(0) test(None) test(‘0‘) if not 0: print 1111
返回
not not yes 1111
以上是关于[python]Python 中 if not 用法的主要内容,如果未能解决你的问题,请参考以下文章
python 中 if 的用法(if else, if not, elif)
python代码`if not x:` 和`if x is not None:`和`if not x is None:`使用