Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

false python

>>> print(not False)
True
>>> print(not [])
True
>>> print(not None)
True
>>> print(not "")
True
>>> print(not '')
True
>>> print(not 0)
True
 
PREVIOUS NEXT
Tagged: #false #python
ADD COMMENT
Topic
Name
7+4 =