循环结构
while循环 , for循环
循环内的操作语句:
continue 结束本次循环,继续下次循环
break 跳出当前循环代码块
pass 占位
while循环
level = 1
price = 5
while price <= 2000 :
level += 1
price *= 2
if level % 2 == 1 :
continue
else :
print(f'l={level}')
print(f'p={price}')
if level >= 8 :
break
l=2
p=10
l=4
p=40
l=6
p=160
l=8
p=640
for循环
主要用于遍历容器类型数据,变量为容器中的每一个元素
print(range(0, 100),type(range(0, 100)))
for n in range(0, 3) :
print(n,end=',')
library = {1:'W', 2:'D', 3:'C', 4:'G', 5:'S', 6:'M'}
box = 0
for g in library :
box += 1
print(str(box) + '.' + library[g])
if box >= 4 :
break
range(0, 100) <class 'range'>
0,1,2,
1.W
2.D
3.C
4.G