您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python中有哪些常見的循環結構,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。
1、for…in…
該格式在python中是最為常見的一種格式,使用極為廣泛。
格式:for 參數 in 循環體: pass
在上面的格式中,有很多內容可以作為循環體,比如元組、列表、字符串等等。只要能穿越循環,就可以作為循環體存在。
其中參數主要用來存儲每個循環體發送的單個元素,從而實現循環功能。在實踐中,它經常與if判斷語句結合使用。
#input str_01 = '時間都去哪了!!!' for i in str_01: print(i) #output 時 間 都 去 哪 了 ! ! !
2、while
while循環和for…in…循環的不同之處在于,while要先將循環變量初始化或者直接使用while True 這種死循環形式。
格式: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中有哪些常見的循環結構就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。