None¶
The Python None
type has the meaning of not set.
Equivalent to
Language |
Value |
---|---|
SQL |
NULL |
Java |
null |
JavaScript |
undefined,null |
C/C++ |
NULL or (void *)0 |
Example:
output = None
print(output)
type(output)
The Python None
type has the meaning of not set.
Equivalent to
Language |
Value |
---|---|
SQL |
NULL |
Java |
null |
JavaScript |
undefined,null |
C/C++ |
NULL or (void *)0 |
Example:
output = None
print(output)
type(output)