NoneType in Python - Java2Blog
java2blog.com › nonetype-pythonWhat is NoneType in Python? In python, we have a special object “None” to represent that a variable doesn’t refer to any object. The object “None” has the datatype “NoneType”. In other words, NoneType is the data type of the value None in python. To visualize this, let us declare a variable with the Value None and check its data type.