第四章 条件与循环
Posted wcsan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第四章 条件与循环相关的知识,希望对你有一定的参考价值。
1.条件语句
if 表达式:
代码块
elif 表达式:
代码块
else:
代码块
2.for循环
for 迭代变量 in 可迭代对象:
代码块
for year in range(2000,2019):
print(‘%s年是%s‘ %(year, ***))
3.while循环
while 表达式:
代码块
import time
num = 5
while True:
print(‘a‘)
time.sleep(1)
if num > 10:
break #continue
4.循环与判断的嵌套
以上是关于第四章 条件与循环的主要内容,如果未能解决你的问题,请参考以下文章