循环退出,流程控制
for循环:针对列表,文件循环
while循环:针对条件循环
while expression: # 直到表达式变为假,才退出循环
statement(s)
while expression: # 直到表达式变为假,才执行 else 语句
statement(s)
else:
statement(s)
break 表示退出整个循环,继续执行循环外的语句
continue 表示退出本次循环,继续下一次循环
exit() 表示退出整个程序,整个脚本
pass 表示什么都不做,继续执行,相当于先在这里占个位置,以后想到要做什么再来这里补充
1、当n=5时就跳出循环
n=0
while True:
if n==5:
break
print 'this is %d' %n
n+=1
2、当x=q就跳出循环
当x为空,就break
x='quit',就跳过这次循环,继续下一次循环
while x!='q':
x = raw_input('Please input someting,q for quit: ')
if not x:
break
elif x=='quit':
continue
print 'continue'
else:
print x
else:
print 'python'
3、判断是否为空
In [100]: x=123
In [101]: if not x: #x有值,not x:没有值,那肯定是错的
...: print '123'
...: else:
...: print '456'
...:
...:
456
In [102]: x='' #x没有值为假,有值为真
In [103]: if not x:
...: print '123'
...: else:
...: print '456'
...:
...:
123
4、只有while 后面不是0或者空,表达式都为真
本文转自 iekegz 51CTO博客,原文链接:http://blog.51cto.com/jacksoner/2055186,如需转载请自行联系原作者