Instruction
Great! It's time to wrap things up.
- Comments in Python start with
#and continue till the end of a given line. - Boolean variables can take on one of two values:
TrueorFalse. ifstatements use the following syntax:if condition: ... elif condition: ... else: ...
- The following comparison operators can be used:
<,>,<=,>=,==,!=. - The following Boolean operators can be used:
and,or,not. ifstatements can be nested.
Are you ready for a short quiz now?
Exercise
Click to continue.



