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 Mon Sep 21 15:53:25 2020.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License