``` age = 19 if age >= 18: print("You are old enough to vote!") ```
*在?处,Python检查变量age 的值是否大于或等于18;答案是肯定的,因此Python执行?处缩进的print 语句:* * if-else语句:if-else 语句块类似于简单的if 语句,但 其中的else 语句让你能够指定条件测试未通过时要执行的操作。if-else 结构非常适合用于要让Python执行两种操作之一的情形。在这种简单的if-else 结构 中,总是会执行两个操作中的一个。 ``` age = 17 if age >= 18: print("You are old enough to vote!") print("Have you registered to vote yet?") else: print("Sorry, you are too young to vote.") print("Please register to vote as soon as you turn 18!") ```