流程控制 while迴圈

2022-05-06 05:03:12 字數 470 閱讀 1156

while迴圈的結構:

while條件:

結果如果條件為真,則直接執行結果,然後再次判斷條件,知道條件為假,停止迴圈。

結束迴圈的條件:

1.改變條件;

2.break

案例:1、猜大小的遊戲:

n = 66  #理想數字為66

content = int(input("做個遊戲,請輸入我的理想數字是多少:"))

while true:

if content < n:

content = int(input("結果小了,再猜:"))

elif content > n:

content = int(input("結果大了,再猜:"))

else:

print("恭喜你,猜對了!")

break

流程控制:

1.break:立刻跳出迴圈,打斷的意思

Python流程控制 while迴圈

for 迴圈主要去對列表 字串 檔案的行數等有次數的迴圈上。while 迴圈在有條件的控制上。while迴圈,直到表示式變為假 或者有乙個break 才退會出while迴圈,表示式是乙個邏輯表示式,必須返回乙個true或false 語法 while expression statement s 注意...

迴圈退出 流程控制 while

for迴圈 針對列表,檔案迴圈 while迴圈 針對條件迴圈 while expression 直到表示式變為假,才退出迴圈 statement s while expression 直到表示式變為假,才執行 else 語句 statement s else statement s break 表示...

流程控制語句 while迴圈

1 while迴圈語句標準格式 while 迴圈條件語句 while true 注意 while 迴圈條件 中迴圈條件必須是boolean型別 執行流程 第二步 執行迴圈體語句 第三步 迴圈體語句執行完後,重新從第一步開始再執行一遍 2 while迴圈語句擴充套件格式 初始化語句 while 迴圈條...