python中for循环的用法

文/路人甲

for循环是指一个通用的序列迭代器,用于遍历任何有序的序列对象内的元素,可用于字符串、元组、列表和其它内置可迭代对象,以及通过类所创建的新对象。

for循环语法格式

for expression in object:

for_suite

else:

else_suite

for语法格式扩展

for expression in object:

for_suite

if boolean_expression2: continue

if boolean_expression3: break

else:

else_suite

小编推荐

1.mean to do和doing的区别 mean有哪些用法

2.advise的用法和固定搭配

3.health与healthy的用法区别

4.elif在python中如何使用

5.affect与effect用法的区别

6.advice和advise的用法

7.absent用法固定搭配

8.a,an,the的用法区别

下载文档