一.if 判断 语法一: if 条件: # 以下是上一条if 的子代码块 print(子代码1) print(子代码2) print(子代码3) 示例: # 路边飘过一个生物,要不要表白? sex = 'female' age = 18 is beautiful = True if sex == 'female' and age == 18 and is beautiful: print('我要表白') # 子代码块代码 print('上一缩进级的代码') # 上一缩进级的代码块 print('…
if语句: if 条件1: pass elif 条件2: pass elif 条件3: pass else: pass if 条件语句中,先判断条件1,如果满足条件1,则执行第二行代码,第二行执行完后if条件语句结束. 示例:用户取款机菜单用户选择界面: from time import sleep num = input("Please input your chioce:") ": print("取款中.....") sleep(3) print(&q…
一.流程控制 if 判断 python中使用缩进来区分代码块的 语法 一: #python if 条件: 代码块1 代码块2 自上而下依次运行 语法二: # python if 条件一: 代码一 else: 代码二 练习: sex = "female" age = 18 is_beatuiful = True is_successful = True height = 1.7 if sex == 'female ' and age >16 and age < 24 and…