循环总结
一.循环语句
1.1 for循环
for循环可以遍历任何序列的项目,如一个列表或者一个字符串。
其基本形式为:
for 判断条件 in 条件范围:
执行语句…
常用语法:
>for 变量 in range(参数1,参数2):
> 执行语句...
>#range是指一个区间范围,表示从参数1到参数2范围的整数,前开后闭
1.2 while循环
其基本形式(也可以是常用语法)为:
while 判断条件:
执行语句……
执行语句可以是单个语句或语句块。判断条件可以是任何表达式,任何非零、或非空(null)的值均为true。
当判断条件假 false 时,循环结束。
注:在 python 中,while … else 在循环条件为 false 时执行 else 语句块;for循环语句同样
3.3 pase 语句
pass 是空语句,是为了保持程序结构的完整性。
pass 不做任何事情,一般用做占位语句。
其基本格式为:
pass
二.循环中运用到的关键字
2.1 break关键字
break语句用来终止循环语句,即循环条件没有False条件或者序列还没被完全递归完,也会停止执行循环语句。
break语句用在while和for循环中。
如果您使用嵌套循环,break语句将停止执行最深层的循环,并开始执行下一行代码。
其基本格式为:
break
break举例:
for letter in 'Python':
if letter == 'h':
break
print ('当前字母 :', letter)
输出:
当前字母 : P
当前字母 : y
当前字母 : t
2.2 continue关键字
continue 语句用来告诉Python跳过当前循环的剩余语句,然后继续进行下一轮循环。
continue语句用在while和for循环中。
其基本格式为:
continue
continue举例:
for letter in 'Python':
if letter == 'h':
continue
print ('当前字母 :', letter)
输出:
当前字母 : P
当前字母 : y
当前字母 : t
当前字母 : o
当前字母 : n
三.循环举例
3.1 普通的循环语句
3.1.1 for循环举例
fruits = ['banana', 'apple', 'mango']
for fruit in fruits:
print ('当前水果: %s'% fruit)
输出:
当前水果: banana
当前水果: apple
当前水果: mango
for i in range(1,5):
print(i)
输出:
1
2
3
4
3.1.2 while循环举例
count = 0
while (count < 5):
print ('The count is:', count)
count = count + 1
else:
print (count, " is not less than 5")
输出:
The count is: 0
The count is: 1
The count is: 2
The count is: 3
The count is: 4
5 is not less than 5
3.2 循环嵌套语句
for i in range(2,20):
j = 2
while(j <= (i/j)):
if not(i%j): break
j = j + 1
if (j > i/j) : print (i, " 是素数")
i = i + 1
输出:
2 是素数
3 是素数
5 是素数
7 是素数
11 是素数
13 是素数
17 是素数
19 是素数