码迷,mamicode.com
首页 > 编程语言 > 详细

Python的while与for循环

时间:2017-10-05 20:54:09      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:else   存在   str   语句   int   bsp   for   执行   while   

  str = [‘a‘, ‘b‘, ‘c‘]

  i = 0

  while i < 3:

    print(str[i])

    i += 1

  for j in str:

    print(j)

  else 

    print(‘over‘)

  for循环的else语句在循环执行结束时执行,如果for循环存在break则不会执行。

 

  

Python的while与for循环

标签:else   存在   str   语句   int   bsp   for   执行   while   

原文地址:http://www.cnblogs.com/ForXinYuanStudyPy/p/7629906.html

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