Compares expressions and returns True if both expression are True.
Syntax
expression and expression
Notes
Expressions
|
Result
|
True and True |
True |
True and False |
False |
False and True |
False |
False and False |
False |
Example
if grade > 8 and grade < 13 then
school = "High School"
end
|