Before you keep reading...
Runestone Academy can only continue if we get support from individuals like you. As a student you are well aware of the high cost of textbooks. Our mission is to provide great books to you for free, but we ask that you consider a $10 donation, more if you can or less if $10 is a burden.
Before you keep reading...
Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.
12.4. Logical Expressions
The basic form of an if
statement is the word if followed by a logical expression, and then a colon. All the statements that are indented beneath the if
(called the body of condition) are executed IF AND ONLY IF the logical expression is true
.
The following are examples of logical expressions:
Expression |
Logical meaning |
a < b |
True if a is less than b |
a <= b |
True if a is less than or equal to b |
a > b |
True if a is greater than b |
a >= b |
True if a is greater than or equal to b |
a == b |
True if a is equal to b.
(Two equals signs, to distinguish it from assignment) |
a != b |
True if a is not equal to b. |
Note
Discuss topics in this section with classmates.
You have attempted
of
activities on this page