码迷,mamicode.com
首页 > 其他好文 > 详细

for循环、while循环

时间:2017-04-22 18:50:17      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:int   for循环   str   one   循环   while   --   nbsp   结束   

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循环

标签:int   for循环   str   one   循环   while   --   nbsp   结束   

原文地址:http://www.cnblogs.com/domestique/p/6748612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!