False

KeywordPython 2.0+Beginner

Boolean literal representing false/0

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
result = False
print(result)
print(type(result))

if not result:
    print("False is falsy")

False is one of Python's two boolean literals. It evaluates as falsy in conditions and equals the integer 0.

Try in Playground

Tags

languagesyntaxcorebooleandatatype

Related Items