Skip to content

Python

[Python] Tutorial(5) Boolean, True, False

If we want to discuss the “True” and “False” in Python, we must mention a data type —— “Boolean”.

Boolean is also know “Bool”, which is the “Boolean value” that you maybe often see in books on programming language.

In the program, the simplest bool value is “True” or “False”, that is “1” or “0”, it is just that simple.

Read More »[Python] Tutorial(5) Boolean, True, False