Menu Close

How to test NoneType in Python?

Sometimes, we want to test NoneType in Python.

In this article, we’ll look at how to test NoneType in Python.

How to test NoneType in Python?

To test NoneType in Python, we can use the is operator.

For instance, we write

if variable is None:
    # ...

to check if variable is None.

Conclusion

To test NoneType in Python, we can use the is operator.

Posted in Python, Python Answers