1.分为两种类型:
while循环 在给定的判断条件为true时执行循环,否则退出循环
for循环 重复执行语句
2.while:基本形式:
while 判断条件:
执行语句......
执行语句可以是单个语句或语句块。判断条件可以是任何表达式,任何非零、或非空(null)的值均为True。当判断条件False时,循环结束。
示例如下:
count = 0
while (count < 9):
print 'The count is:', count
count = count + 1
print 'OK!'
运行输出:
The count is: 0
The count is: 1
The count is: 2
The count is: 3
The count is: 4
The count is: 5
The count is: 6
The count is: 7
The count is: 8
OK!
3.continue 跳过此次循环
i=0
while i<10:
i+=1
if i%2 >0: #非双时跳过
continue
print i,
运行输出:
2 4 6 8 10
break跳出整个循环
i=0
while i<10:
i+=1
print i,
if i > 5: # 非双时跳过
break
运行输出:
1 2 3 4 5 6
4.循环使用else语句
在python中,while ... else 在循环条件为False时执行else语句块
count = 0
while count < 5 :
print count, 'is less than 5'
count = count + 1
else : print count,'is not less than 5'
运行输出:
0 is less than 5
1 is less than 5
2 is less than 5
3 is less than 5
4 is less than 5
5 is not less than 5
5.random.unifrom(1,10) 获取一定范围内的随机数
语法: import random # 先导入文件才不会报错。
random.unifrom(1,10)
6.for循环,可以遍历任何序列的项目,如一个列表或者一个字符串。
语法:
for iterating_var in sequence:
statements(s)
示例:
for letter in 'python':
print '当前字母':, letter
fruits = ['banana' , 'apple' , 'mango']
for fruit in fruits:
print '当前水果':,fruit
print 'OK!'
运行后输出:
当前字母: p
当前字母: y
当前字母: t
当前字母: h
当前字母: o
当前字母: n
当前水果: banana
当前水果: apple
当前水果: mango
OK!
7.循环嵌套
for 循环嵌套语法如下:
for iterating_var in sequence:
for iterating_var in sequence:
statements(s)
statements(s)
while循环嵌套语法:
while expression:
while expression:
statements(s)
statements(s)
也允许for循环中嵌入while循环或者while循环中嵌入for循环
i = 2
while (i < 100):
j = 2
while (j <= ( i/j ) ):
if not ( i%j ) :
break
j = j+1
if (j>i/j) : print i, '是素数'
i = i+1
print 'OK!'
运行输出:
2 是素数
3 是素数
5 是素数
7 是素数
11 是素数
13 是素数
17 是素数
19 是素数
23 是素数
29 是素数
31 是素数
37 是素数
41 是素数
43 是素数
47 是素数
53 是素数
59 是素数
61 是素数
67 是素数
71 是素数
73 是素数
79 是素数
83 是素数
89 是素数
97 是素数
OK!
3个班级,每班5人,计算3个班级的平均分
score=[[12,65,56,78,89],[26,90,100,51,72],[86,92,48,91,52]]
i=1
for classScore in score:
sum =0
for socreStu in classScore :
sum=sum+socreStu
avg=sum*1.0/len(classScore)
print '第',i,'个班级的平均分为:',avg
i=i+1
运行输出:
第 1 个班级的平均分为: 60.0
第 2 个班级的平均分为: 67.8
第 3 个班级的平均分为: 73.8
row =1
while row <=5:
col=1
while col<=row:
print '*',
col=col+1
print
row=row+1
运行输出:
**