您好,登錄后才能下訂單哦!
1.簡單的while語句
語法:
while 判斷條件:
執(zhí)行語句
說明:
1.用于循環(huán)執(zhí)行程序,即在某條件下,循環(huán)執(zhí)行某段程序,以處理需要重復處理的相同任務。
2.執(zhí)行語句可以是單個語句或語句塊。
3.判斷條件可以是任何表達式,任何非零、或非空(null)的值均為true。
4.當判斷條件假false時,循環(huán)結束。
示例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 定義變量,通過賦值運算符賦值“=”
count = 0;
# 當count值小于9時輸出當前count的值
while count < 9:
print 'current is: ',count;
count += 1;
print 'the end';
代碼截圖:
運行截圖:
2.continue語句在while語句中使用
語法:
while 判斷條件1:
執(zhí)行語句1;
if 判斷條件2:
continue;
執(zhí)行語句2;
說明:
continue 用于跳過該次循環(huán)
示例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 定義變量,通過賦值運算符賦值“=”
count = 0;
# 當count值小于9時輸出當前count的值
while count < 9:
count += 1;
if count % 2 == 0:
continue;
print 'current is: ',count;
print 'the end';
代碼截圖:
運行截圖:
3.break語句在while語句中使用
語法:
while 判斷條件1:
執(zhí)行語句1;
if 判斷條件2:
break;
執(zhí)行語句2;
說明:
break 用于退出循環(huán)
示例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 定義變量,通過賦值運算符賦值“=”
count = 0;
# 當count值小于9時輸出當前count的值,如果count大于5則結束循環(huán)
while count < 9:
count += 1;
if count > 5:
break;
print 'current is: ',count;
print 'the end';
代碼截圖:
運行截圖:
查看更多技術請移步:https://ui.29mn.com
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。