循环

2017-08-11  本文已影响0人  进步小小青年

一、python条件语句

* 条件执行

Paste_Image.png

*分支执行

*链式执行

Paste_Image.png Paste_Image.png

二、python循环语句

Paste_Image.png
*Python提供了for循环和while循环(在Python中没有do..while循环):
*循环控制语句

1.for循环

for 变量 in 序列语句:

比如:for i in [5,4,3,2,1]:
比如:for i in range(0,9):
Paste_Image.png

通过序列索引迭代

Paste_Image.png

循环使用 else 语句

Paste_Image.png Paste_Image.png

enumerate函数:同时获得索引和元素的值

Paste_Image.png

2.while循环

Paste_Image.png

while语句小结:

Paste_Image.png

3.循环控制:break和continue

Python break 语句

Paste_Image.png

Python continue 语句

Python continue 语句跳出本次循环,而break跳出整个循环。
Paste_Image.png

嵌套循环 (Nested Loops)

Paste_Image.png Paste_Image.png

以上实例输出结果:
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 是素数
Good bye!

上一篇下一篇

猜你喜欢

热点阅读