Python language basics 8: assigning nulls

Introduction

In the previous post we finished looking into how boolean types are represented in Python. This short post will show how nulls are represented. We use nulls to indicate the absence of any value in a variable.

None

If you have a C# or Java background then you’ll first guess will be that nulls are assigned by the keyword ‘null’, right? Let’s see:

hello = null

The compiler won’t like that. Instead, the keyword ‘None’ – strictly with a capital N – is reserved for this purpose. I still like VB.NET’s ‘Nothing’ most but ‘None’ is also more imaginative than a simple ‘null’ 🙂

hello = None

Checking whether a variable is null is performed with the ‘is’ and ‘is not’ operators. You’ll get a warning in the PyCharm IDE if you try to test for None using the equality operator ‘==’:

res = hello == None

Instead, write as follows:

res1 = hello is None
res2 = hello is not None
print(res1)
print(res2)

res1 will be True and res2 will accordingly be False.

Read all Python-related posts on this blog here.

Unknown's avatarAbout Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

One Response to Python language basics 8: assigning nulls

  1. Brian Webb's avatar Brian Dead Rift Webb says:

    Reblogged this on Brian By Experience.

Leave a reply to Brian Dead Rift Webb Cancel reply

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

ARCHIVED: Bite-size insight on Cyber Security for the not too technical.