标签:style color strong for sp on c new r
for 循环
for 元素 in 序列
for a in [1,2,3,4]:
print a
新的python函数range(),用来建立表
idx = range(5)
print idx
这个函数的功能是新建一个表。这个表的元素都是整数,从0开始,下一个元素比前一个大1, 直到函数中所写的上限 (不包括该上限本身)
while循环
while i < 10
print i
i = i + 1
continue # 在循环的某一次执行中,如果遇到continue, 那么跳过这一次执行,进行下一次的操作
break # 停止执行整个循环
标签:style color strong for sp on c new r
原文地址:http://www.cnblogs.com/ifaithu/p/3982761.html