本文共 964 字,大约阅读时间需要 3 分钟。
for循环:针对列表,文件循环
while循环:针对条件循环while expression: # 直到表达式变为假,才退出循环 statement(s)while expression: # 直到表达式变为假,才执行 else 语句 statement(s)else: statement(s)
break 表示退出整个循环,继续执行循环外的语句continue 表示退出本次循环,继续下一次循环exit() 表示退出整个程序,整个脚本pass 表示什么都不做,继续执行,相当于先在这里占个位置,以后想到要做什么再来这里补充
1、当n=5时就跳出循环
n=0while True:if n==5:breakprint 'this is %d' %nn+=12、当x=q就跳出循环
当x为空,就breakx='quit',就跳过这次循环,继续下一次循环while x!='q':x = raw_input('Please input someting,q for quit: ')if not x:breakelif x=='quit':continueprint 'continue'else:print xelse:print 'python'3、判断是否为空In [100]: x=123In [101]: if not x: #x有值,not x:没有值,那肯定是错的 ...: print '123' ...: else: ...: print '456' ...: ...: 456In [102]: x='' #x没有值为假,有值为真In [103]: if not x: ...: print '123' ...: else: ...: print '456' ...: ...: 123
4、只有while 后面不是0或者空,表达式都为真
转载于:https://blog.51cto.com/jacksoner/2055186