for循环while循环

Posted 关灯吃面

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环while循环相关的知识,希望对你有一定的参考价值。

for循环

for i in range(10):
    if i >= 5:
        print(i)
    else:
        #break 跳出本层循环
        continue #跳出本次循环
        print("-----")
for i in range(10):
    print(i)
    if i== 5:
        break

else: #当循环正常结束时,走else
    print("done")

while循环

count = 0
while True:
    print("你是风儿我是沙,缠缠绵绵到天涯...",count)
    count +=1
    if count == 100:
        break

  

跳出多层循环#跳出多层循环,while、for、if都有else分支,循环完才执行else

for i in range(3):
    for j in range(3):
        if i==j==1:
            break
        else:
            print(i,j)
    else:
        continue
    break

,,,
结果为

0 0
0 1
0 2
1 0

  ‘‘‘


 

以上是关于for循环while循环的主要内容,如果未能解决你的问题,请参考以下文章

Python 图中的while循环改for循环,怎么改,直接回答代码,谢谢

什么叫“写一个循环(for或者while)读入五个浮点数?”

循环语句 while,do while ,for 循环

DAY 04 while和for循环

第六篇:循环语句 - while和for

在C中的while循环或for循环之后没有代码执行[重复]