-
What is Code?
-
Data
-
Input
-
Functions
-
Boolean logic and decisions
-
Loops
-
Modules
-
Examples
-
Exercises
Boolean data types
A bool
is another type of data like string
or number
.
It has a special meaning, it can only be either True
or False
.
isRaining = False
happy = True
finishedCounting = False
It's is also called a boolean.