码迷,mamicode.com
首页 > 编程语言 > 详细

[Python] Check for None (Null) in Python

时间:2017-12-09 19:42:42      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:div   sso   objects   nbsp   may   lan   for   sam   empty   

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

标签:div   sso   objects   nbsp   may   lan   for   sam   empty   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!