python提供了哪几种基本的循环结构,循环结构的三种类型Python
1、for…in…
这种格式是python中最常见的格式,被广泛使用。
格式:对于循环体中的参数:
在上面的格式中,有很多内容可以作为循环体,比如元组、列表、字符串等等。只要能穿越环流,就能以循环体的形式存在。
参数主要用于存储每个循环体发送的单个元素,从而实现循环功能。在实践中,它经常与if判断语句结合使用。
#输入
Str_01=时间都到哪里去了!
foriinstr_01:
打印(一)
#输出
时间
间距
全部
定位
哪个
从高处或远处观看
!
!
!2、while
while循环和for…in…循环的区别在于while首先初始化循环变量或者直接使用while True的无限循环形式。
格式:i=0
whilei=10:
及格
i=1 #输入
whileTrue:
打印( helloworld!__hellopython!)
#输出
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!
helloworld!__hellopython!。。
以上是python中两种常见的循环结构,希望能对你有所帮助。更多Python学习指南:python基础教程
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。