java中循环语句有三种:
for循环 for each循环 和while循环
python中只有两种
for in 循环 和while循环
都是差不多的,for each 和 python中的 for in都是为快速遍历某个容器而生的
下面就来讲解这些循环的基本语法:
students = ['小明','小李','小张']
for studentName in students:
print(studentName)
执行结果
小明
小李
小张
#这个就是python中的for in 写法,用来遍历某个list
如果我想使用for循环,循环指定的次数怎么写呢?
for count in range(0,10):
print('count',count)
0
1
2
3
...
9
如果我想打印 0 2 4 6 8 怎么写?
for count in range(0,10,2):
print('count',count)
0
2
4
6
8
-------------------------------------------
while True:
print("死循环")
#while 后面跟的是判断式,只有结果为True时才会进入循环体,否则会跳出循环,执行循环体外的代码
循环挺简单的,对于刚入门的朋友就显得不太好掌握了
我刚刚开始学习java时,最怕遇到循环语句,因为那代码逻辑实在有点绕
多加练习就好了,慢慢就掌握了