您好,登錄后才能下訂單哦!
這篇“python的for while循環(huán)怎么用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python的for while循環(huán)怎么用”文章吧。
條件判斷與縮進(jìn),注意冒號(hào)
加次數(shù)限制
#猜數(shù)字
lucky_num = 19
input_num = -1
#次數(shù)限制
count = 0
#while lucky_num!=input_num and count < 3:
while count < 3:
input_num = int(input("please input your lucky_num:"))
if input_num < lucky_num:
print("please input big num")
elif input_num > lucky_num:
print("please input little num")
else:
print("great")
break
count += 1
print(count)
else:
print("too many counts!!!!")
注意縮進(jìn),python是對(duì)縮進(jìn)敏感的語言
注釋:ctrl+/
for循環(huán)
#次數(shù)限制
for i in range(3):
input_num = int(input("please input your lucky_num:"))
if input_num < lucky_num:
print("please input big num")
elif input_num > lucky_num:
print("please input little num")
else:
print("great")
break
else:
print("too many counts!!!!")
以上就是關(guān)于“python的for while循環(huán)怎么用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。