1. 程式人生 > >day01語法python入門_2

day01語法python入門_2

while循環 pre clas cnblogs 條件 int while day01 print

十:while循環

1.基本循環

while條件
    #循環體
    #如果條件為真,那麽循環體則執行
    #如果條件為假,那麽循環體不執行。

2.break

break 用於退出所有循環

while True:
    print "123"
    break
    print "456"

3.continue

while True:
    print "123"
    continue
    print "456"

  

day01語法python入門_2