python 直接if判断和is not None的区别
Posted 生信日记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 直接if判断和is not None的区别相关的知识,希望对你有一定的参考价值。
tmpName = \'\' if tmpName: print tmpName #没有输出 if tmpName is not None: print tmpName #有输出,是空行
以上是关于python 直接if判断和is not None的区别的主要内容,如果未能解决你的问题,请参考以下文章
Python `if x is not None` 或 `if not x is None`? [关闭]