1.循环
1.1while 循环
当你爬楼梯的时候 知道有 20 阶台阶,所以有
>>> for step in range(0,20):
print(step)
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
而当你在爬山的时候,你不知道前面还有多远还有多少的台阶你要去走,此时你就可以用while 循环
step = 0
while step < 20:
step = step +1
print(step)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
让我们更加常见的是 while 的条件不只有一个。
x = 30
y = 60
while x < 40 and y > 50:
x = x + 1
y = y - 1
print(x,y)
31 59
32 58
33 57
34 56
35 55
36 54
37 53
38 52
39 51
40 50
创建一个循环来打印奇数,直到你的年龄:
for i in range(0,22):
if i % 2 == 1:
print(i)
1
3
5
7
9
11
13
15
17
19
21
for i in range(0,6):
ww = ['a','b','c','d','e']
print('%s %s' %(i, ww[i]))
0 a
1 b
2 c
3 d
4 e
网友评论