這篇文章主要講解了“Python中for循環(huán)和while循環(huán)有什么不同”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Python中for循環(huán)和while循環(huán)有什么不同”吧!
創(chuàng)新互聯(lián)建站專注于嵐山企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城網(wǎng)站建設(shè)。嵐山網(wǎng)站建設(shè)公司,為嵐山等地區(qū)提供建站服務(wù)。全流程按需策劃設(shè)計,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)Python中用while語句和for語句表示循環(huán)執(zhí)行某一段代碼
while后面跟一個條件,或者跟一個序列(列表、元組等),序列為空則跳出循環(huán),否則繼續(xù)循環(huán)
for循環(huán)后面跟一個序列,循環(huán)次數(shù)為序列的長度
while循環(huán)可以加個else語句,跳出while的時候就執(zhí)行這個else
舉例
a = 3
while a > 0:
print(a)
a -= 1
1
2
3
4
輸出:
3
2
1
shoplist = ['apple', 'mango', 'carrot', 'banana']
while shoplist:
print(3)
1
2
3
輸出:一直輸出3,直到按ctrl+c
shoplist = ['apple', 'mango', 'carrot', 'banana']
while shoplist:
print(3)
shoplist = shoplist[:(len(shoplist)-1)]#每次循環(huán)都去掉最后一個元素
1
2
3
4
輸出:
3
3
3
3
shoplist = ['apple', 'mango', 'carrot', 'banana']
while shoplist:
print(3)
shoplist = shoplist[:(len(shoplist)-1)]
else:
print('finished')#else語句
1
2
3
4
5
6
輸出:
3
3
3
3
finished
shoplist = ['apple', 'mango', 'carrot', 'banana']
for i in shoplist:
print(i) #這里面i會被逐次賦值為shoplist里面的元素
1
2
3
輸出:
apple
mango
carrot
banana
shoplist = ('apple', 'mango', 'carrot', 'banana')
for i in shoplist:
print(i) #這里shoplist是元組,for循環(huán)也可以跟元組
1
2
3
輸出:
apple
mango
carrot
banana
感謝各位的閱讀,以上就是“Python中for循環(huán)和while循環(huán)有什么不同”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Python中for循環(huán)和while循環(huán)有什么不同這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!