while 条件:
结果
如果条件是真 则直接执?结果. 然后再次判断条件. 直到条件是假. 停?循环
#计数 count = 1 while count <= 8: print("你是个混蛋") count = count + 1
break: 立刻跳出循环. 打断的意思
#停止当前循环 while True: s = input("请开始喷:") if s == "q": break #停止当前循环 print("喷的内容是:"+ s)
continue: 停?本次循环, 继续执?下?次循环.
#停止当前循环 while True: s = input("请开始喷:") if s == "q": break #停止当前循环 #过滤掉马化腾 if "马化腾" in s:#在xxx中出现了xx print("你输入的内容不合适,情重新输入") continue #停止本次循环,再从头开始下一次循环 print("喷的内容是:"+ s)
原文:https://www.cnblogs.com/fuhai1232/p/10597032.html