python for循环案例-Python For循环实例分析

Python中的For循环

1.For循环语句

1.Python for循环可以遍历任何序列类型,如一个列表或者一个字符串。如下代码应该能理解,依次输出序列元素。

name = ["cdx", "red", "molly"]for i inname:print(i)>>>"cdx" "red" "molly"

2.for else语句(就是在循环结束后,执行else的内容)

name = ["cdx", "red", "molly"]for i inname:print(i)else:print ("hahaha")>>>"cdx", "red", "molly" "hahaha"

3.for循环中的break语句与countinue语句(条件达成时,遇到break直接跳出循环体,遇到countinue再返回执行循环)

#break语句

name = ["cdx"]for i inname:if i == "cdx":print("redmolly")break

print("这句还执行吗?")else:print("没有循环数据!")print("完成循环!")>>>redmolly

完成循环!

#countinue语句

for i in "cdx":

if i == c:

countinue

print(i)

>>>"dx"

2.经常与

你可能感兴趣的:(python for循环案例-Python For循环实例分析)