您好,登錄后才能下訂單哦!
python中for循環用于針對集合中的每個元素的一個代碼塊,而while循環能實現滿足條件下的不斷運行。
使用while循環時,由于while只要滿足條件就會執行代碼,故必須指定結束條件,否則會形成死循環。如圖,i 的初始值為1,由于沒有給i 再進行賦值,導致i 一直都滿足條件,進入死循環。代碼示例如下:
i = 1 while i <= 5: print(i)
上述問題的解決方案就是在循環中,給i 賦值。這樣當i 不再滿足條件時,程序將終止。代碼示例如下:
i = 1 while i <= 5: print(i) i += 1
實例1:利用while循環可求0-100數字的和。代碼示例如下:
i = 1 result = 0 while i <= 100: result += i i += 1 print(result)
需要注意的是,打印和的代碼print(result)是放在while循環外的。如若放在循環內,將導致每循環1次打印1次結果,圖中的代碼將輸出100次。代碼示例如下:
i = 1 result = 0 while i <= 100: result += i i += 1 print(result)
為了演示完整的結果,我們將i 的條件設為小于等于10,可以看到程序運行后總共執行了10次,輸出了10次結果。代碼示例如下:
i = 1 result = 0 while i <= 10: result += i i += 1 print(result)
實例2:利用while循環求10的階乘(即1-10數字的乘積)。代碼示例如下:
i = 1 result = 0 while i <= 10: result *= i i += 1 print(result)
實例3:結合while循環和if-else結構,求100以內3的倍數數字的和。代碼示例如下:
i = 1 result = 0 while i <= 100: if i % 3 == 0: result += i i += 1 else: i += 1 print(result)
知識點擴展:
python中while循環語句用法
number = 1 while number < 20: print(number) number += 1
運行結果如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。