What is `None` in Python?

Python Developer Easy

Python Developer — Easy

What is `None` in Python?

Key points

  • `None` is a unique object in Python representing absence of a value.
  • It is not equivalent to an empty string or boolean False.
  • Used to signify that a variable has no value assigned.
  • `None` is not the same as an undefined variable.

Ready to go further?

Related questions