您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python中for循環和while循環有什么不同”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python中for循環和while循環有什么不同”吧!
Python中用while語句和for語句表示循環執行某一段代碼
while后面跟一個條件,或者跟一個序列(列表、元組等),序列為空則跳出循環,否則繼續循環
for循環后面跟一個序列,循環次數為序列的長度
while循環可以加個else語句,跳出while的時候就執行這個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)]#每次循環都去掉最后一個元素
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循環也可以跟元組
1
2
3
輸出:
apple
mango
carrot
banana
感謝各位的閱讀,以上就是“Python中for循環和while循環有什么不同”的內容了,經過本文的學習后,相信大家對Python中for循環和while循環有什么不同這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。