這篇文章主要講解了“Python中for循環(huán)和while循環(huán)有什么不同”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python中for循環(huán)和while循環(huán)有什么不同”吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供陵水黎族網(wǎng)站建設、陵水黎族做網(wǎng)站、陵水黎族網(wǎng)站設計、陵水黎族網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、陵水黎族企業(yè)網(wǎng)站模板建站服務,十年陵水黎族做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。
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)過本文的學習后,相信大家對Python中for循環(huán)和while循環(huán)有什么不同這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!