No , null is not an object .It is a reference type and its value does not refer to any object and so there is no representation of null in memory.
Read moreHow do you check if an object is null in Python?
There’s no null in Python; instead there’s None . As stated already, the most accurate way to test that something has been given None as a value is to use the is identity operator , which tests that two variables refer to the same object.
Read more