Name

False

Examples
rect(30, 20, 50, 50)
b = False
if not b: # If b is False
    line(20, 10, 90, 80)  # This line is drawn
else:
    line(20, 80, 90, 10)  # This line is not drawn
Description Reserved word representing the logical value "False". Only variables of type Boolean may be assigned the value False.
Related True
Boolean

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.