1、条件流程语句
1、if语句
-
- if 表达式1:
- 语句
if 表达式2:
语句
elif 表达式3:
语句
else:
语句
elif 表达式4:
2、for循环语句
# 以下 for 实例中使用了 break 语句,break 语句用于跳出当前循环体: sites = ["Baidu", "Google","Runoob","Taobao"] for site in sites: if site == "Runoob": # print("菜鸟教程!") break print("循环数据 " + site) else: print("没有循环数据!") print("完成循环!")
循环数据 Baidu
循环数据 Google
完成循环!
# 以下 for 实例中使用了 break 语句,break 语句用于跳出当前循环体: sites = ["Baidu", "Google","Runoob","Taobao"] for site in sites: if site == "Runoob": # print("菜鸟教程!") # break continue print("循环数据 " + site) print("完成循环!") 循环数据 Baidu 循环数据 Google 循环数据 Taobao 完成循环!
- break终止循环,循环并没有正常结束
- countinue退出本次循环,执行下一次循环,循环可以正常结束
3、while循环
sum = 0 counter = 1 while counter <= 100: sum = sum + counter counter += 1 print("1 到 %d 之和为: %d" % (100, sum))
标签:语句,Runoob,流程,site,break,循环,print,pythont From: https://www.cnblogs.com/zp513/p/17873549.html