False
From EventScripts Community Encyclopedia
|
[edit] DescriptionFalse is a boolean value. It is typically returned by some methods to signify failure. Conditional command if automatically casts the expression into boolean type and if the value is False, the block underneath is ignored. The opposite value is True [edit] Conversionsstr(False) == 'False' int(False) == 0 float(False) == 0.0 bool(False) == False not False == True |
|
