Python的while与for循环

Posted

tags:

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

  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循环的主要内容,如果未能解决你的问题,请参考以下文章

Python里for和while的区别(74)

Python的while与for循环

python基础之while循环for循环配合breakcontinue,while与elsefor与else

python基础之while循环for循环配合breakcontinue,while与elsefor与else

python之while与for循环,break与continue

Python的for循环与while语句