Python 循环
1.while
循环:在给定的判断条件为 true 时执行循环体,否则退出循环体。
如果条件判断语句永远为 true
时,这个循环会无限的循环下去 ,要想停止它,可以用 CTRL+C
来终止循环 。
在某条件下,循环执行某段程序,以处理需要重复处理的相同任务。其基本形式为:
while 判断条件:
执行语句……
执行语句可以是单个语句或语句块。判断条件可以是任何表达式,任何非零、或非空(null)的值均为true。
当判断条件假false时,循环结束。
# coding:utf-8
count = 0
while (count < 5):
print('The count is:', count)
count = count + 1
print("Good bye!")
结果:
The count is: 0
The count is: 1
The count is: 2
The count is: 3
The count is: 4
Good bye!
2.循环使用 else 语句
在 python 中,while … else
在循环条件为 false 时执行 else
语句块
# coding:utf-8
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
3.for
循环:根据设定的次数重复执行代码 。
for
循环可以遍历任何序列的项目,比如遍历一个字符串的所有字母,或者遍历一个列表的中所有元素 。
for循环的语法格式如下:
for iterating_var in sequence:
statements(s)
# -*- coding: UTF-8 -*-
for letter in 'Python': # 第一个实例
print('当前字母 :', letter)
fruits = ['banana', 'apple', 'mango']
for fruit in fruits: # 第二个实例
print('当前水果 :', fruit)
print("Good bye!")
输出结果: 当前字母 : P
当前字母 : y
当前字母 : t
当前字母 : h
当前字母 : o
当前字母 : n
当前水果 : banana
当前水果 : apple
当前水果 : mango
Good bye!
我们还能通过序列索引迭代, Python的内置函数 len()
和 range()
,函数 len()
返回列表的长度,也就是列表中元素的 个数。range()
用于返回一个序列的数。
#-- coding: UTF-8 --
fruits = ['banana', 'apple', 'mango']
for index in range(len(fruits)):
print('当前水果 :', fruits[index])
print("Good bye!")
输出结果:
当前水果 : banana
当前水果 : apple
当前水果 : mango
Good bye!
4.for
循环使用else
语句:
在 python 中,for … else 表示这样的意思,for 中的语句和普通的没有区别,else 中的语句会在循环正常执行完(即 for 不是通过 break 跳出而中断的)的情况下执行,while … else 也是一样。
# -*- coding: UTF-8 -*-
for num in range(10,20): # 迭代 10 到 20 之间的数字
for i in range(2,num): # 根据因子迭代
if num%i == 0: # 确定第一个因子
j=num/i # 计算第二个因子
print('%d 等于 %d * %d' % (num,i,j))
break # 跳出当前循环
else: # 循环的 else 部分
print(num, '是一个质数')
输出结果:
10 等于 2 * 5
11 是一个质数
12 等于 2 * 6
13 是一个质数
14 等于 2 * 7
15 等于 3 * 5
16 等于 2 * 8
17 是一个质数
18 等于 2 * 9
19 是一个质数
5.嵌套循环:for 循环嵌套 。while 循环嵌套 。你可以在循环体内嵌入其他的循环体,如在while循环中可以嵌入for循环, 反之,你可以在for循环中嵌入while循环。
6.continue
语句:在语句块执行过程中终止当前循环,跳出该次循环,执行下一次循环。
break
语句: 在语句块执行过程中终止循环,并且跳出整个循环
pass
语句: Python pass 是空语句,是为了保持程序结构的完整性。 pass
不做任何事情,一般用做占位语句,
# -*- coding: UTF-8 -*-
# 输出 Python 的每个字母
for letter in 'Python':
if letter == 'h':
pass
print('这是 pass 块')
print('当前字母 :', letter)
print("Good bye!")
输出结果:
当前字母 : P
当前字母 : y
当前字母 : t
这是 pass 块
当前字母 : h
当前字母 : o
当前字母 : n
Good bye!
欢迎关注我的公众号:「韧桂」
韧桂 2018-07-07