None Data Type
- None means nothing or No value associated.
- If the value is not available, then to handle such types of cases None is introduced.
- It is something like a null value in Java.
Eg:
def m1():
a=10
print(m1())
None
Eg:
def m1():
a=10
print(m1())
None