NoneType in Python (ननटाइप) :-
NoneType Python का एक Built-in Data Type है, जिसका उपयोग किसी भी Value (मान) की अनुपस्थिति (Absence of Value) या कोई मान उपलब्ध नहीं है (No Value) को दर्शाने के लिए किया जाता है।
इस Data Type का केवल एक ही Object होता है, जिसे None कहा जाता है।
None का अर्थ 0 (Zero), False, या Empty String ("") नहीं होता। यह केवल यह दर्शाता है कि कोई Value मौजूद नहीं है।
Python में None एक Special Constant है और इसका पहला अक्षर हमेशा Capital (N) होता है।
महत्वपूर्ण: None का Data Type NoneType होता है।
English
NoneType is a Built-in Data Type in Python that represents the absence of a value or no value.
This data type has only one object, called None.
None does not mean 0 (Zero), False, or an Empty String (""). It simply indicates that no value is present.
In Python, None is a special constant, and its first letter must always be capital (N).
Important: The data type of None is NoneType.
Syntax :-