python中循环结构分有,python常见循环结构有哪些
1、for…in…
該格式在python中是最為常見的一種格式,使用極為廣泛。格式:for?參數(shù)?in?循環(huán)體:
pass
在上面的格式中,有很多內(nèi)容可以作為循環(huán)體,比如元組、列表、字符串等等。只要能穿越循環(huán),就可以作為循環(huán)體存在。
其中參數(shù)主要用來存儲每個循環(huán)體發(fā)送的單個元素,從而實現(xiàn)循環(huán)功能。在實踐中,它經(jīng)常與if判斷語句結(jié)合使用。#input
str_01?=?'時間都去哪了!!!'
for?i?in?str_01:
print(i)
#output
時
間
都
去
哪
了
!
!
!
2、while
while循環(huán)和for…in…循環(huán)的不同之處在于,while要先將循環(huán)變量初始化或者直接使用while True 這種死循環(huán)形式。格式:i?=?0
while?i?>=10:
pass
i?+=1#input
while?True:
print('hello?world!!!__hello?python!!!')
#output
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
hello?world!!!__hello?python!!!
.
.
.
.
.
.
以上就是python中2種常見循環(huán)結(jié)構(gòu),希望能對大家有所幫助。更多Python學習指路:
與50位技術(shù)專家面對面20年技術(shù)見證,附贈技術(shù)全景圖總結(jié)
以上是生活随笔為你收集整理的python中循环结构分有,python常见循环结构有哪些的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql三种引擎_MySQL常见的三种
- 下一篇: python中的reindex_Pand