day01语法python入门_2
生活随笔
收集整理的這篇文章主要介紹了
day01语法python入门_2
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
十:while循環(huán)
1.基本循環(huán)
while條件#循環(huán)體#如果條件為真,那么循環(huán)體則執(zhí)行#如果條件為假,那么循環(huán)體不執(zhí)行。2.break
break 用于退出所有循環(huán)
while True:print "123"breakprint "456"3.continue
while True:print "123"continueprint "456"
轉(zhuǎn)載于:https://www.cnblogs.com/leoday/p/7169501.html
總結(jié)
以上是生活随笔為你收集整理的day01语法python入门_2的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: SQL SERVER2000将多行查询结
- 下一篇: python中的线程之semaphore