单分支
if 判断条件: 代码块
双分支
if 判断条件: 代码块else: 代码块
多分支(分支嵌套)
if 判断条件1: 代码块1elif 判断条件2: 代码块2...elif 判断条件n: 代码块nelse: 默认代码块