循环,迭代,遍历 都指的是循环
python:
while 循环必须由结束条件
break:立刻结束循环
continue:结束本次 继续下一次
for ,while循环
while 语句 首先要有一个计数器
count = 0
while count<10:
print('学生')
count = count+1 #创建一个+1,才能满足小于10,不会出现死循环
for循环
语句
for i in range(循环几次)
for循环不用定义计数器
for i in range(10): print('班级',i)
countinue
count = 0 while count <10: count=count+1 if count ==3: #当if==3,会跳过3继续执行
continue(直接跳过) print('学生',count)
#break(如果出现,不会执行else)
else:
print('全部执行完毕')#continue 执行完毕后执行else
break:
立即结束
不会再执行
如果嵌套两曾循环
需要先定义一个标题
然后结束里面的循环后,在结束外面的循环
小练习
循环补充:
d=['xiaoming','xiaohong']
len ()取元素的长度
print(len(d))
循环3此
d={}
i = 0
循环list
for u in d :
print(u)