导语:
本文主要介绍了关于python常见循环结构有哪些的相关知识,包括python循环结构组成部分,以及python两种基本循环结构这些编程知识,希望对大家有参考作用。
1、for…in…
这种格式是python中最常见的格式,使用极为广泛。
格式:for 参数 in 循环体:
pass
在上述格式中,有很多东西可以作为循环体,比如元组、列表、字符串等,只要能通过循环,就可以作为循环体存在。
参数主要用于存储每个循环体发送的单个元素,从而实现循环功能。在实践中,它通常与 if 语句一起使用。
#input
str_01 = '时间都去哪了!!!'
for i in str_01:
print(i)
#output
时
间
都
去
哪
了
!
!
!
2、while
while循环和for...in...循环的区别在于必须先初始化while循环变量或者直接使用while True的无限循环形式。
格式:i = 0
while i >=10:
pass
i +=1
#input
while True:
print('hello world!!!__hello python!!!')
#output
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
hello world!!!__hello python!!!
.
.
.
.
.
.
以上是python中常见的两种循环结构,希望对你有所帮助。
更多Python学习指路:
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python3空闲是如何工作的12/04
- ♥ python Axes3D绘制3D图形11/04
- ♥ python raise语句重新抛出异常01/03
- ♥ 如何理解python中的最小二乘法?10/26
- ♥ 如何写出优雅的python11/20
- ♥ 使用 __slots__ 在 python 中定义类属性11/23
内容反馈