首页 > 编程语言 > 详细

[Python] Check for None (Null) in Python

时间:2017-12-09 18:53:36      阅读:255      评论:0      收藏:0      [点我收藏+]

If you’ve used other programming languages, you may have learned that an empty object is not the same as an object that does not exist. In this lesson, you’ll learn how to check for None (or Null objects) in Python.

 

foo = None

if foo is None:
    print("is None")

if foo == None:
    print("also none")

 

Using ‘is‘ can be better when check is None or not, because ‘is‘ is doing id comparsion:

id(foo) == id(None)

It is much faster check ‘==‘ it does a deep looking for the value.

[Python] Check for None (Null) in Python

原文:http://www.cnblogs.com/Answer1215/p/8012164.html

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