這篇文章帶給大家的內容是關於Python循環的技巧介紹(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
當在字典中循環時,用 items() 方法可將關鍵字和對應的值同時取出
>>> knights = {'gallahad': 'the pure', 'robin': 'the brave'} >>> for k, v in knights.items(): ... print(k, v) ... gallahad the pure robin the brave
當在序列中循環時,用 <span class="pre">enumerate()</span>
函數可以將索引位置和其對應的值同時取出
>>> for i, v in enumerate(['tic', 'tac', 'toe']): ... print(i, v) ... 0 tic 1 tac 2 toe
當同時在兩個或更多序列中循環時,可以用 <span class="pre">zip()</span>
函數將其內元素一一配對。
>>> questions = ['name', 'quest', 'favorite color'] >>> answers = ['lancelot', 'the holy grail', 'blue'] >>> for q, a in zip(questions, answers): ... print('What is your {0}? It is {1}.'.format(q, a)) ... What is your name? It is lancelot. What is your quest? It is the holy grail. What is your favorite color? It is blue.
當逆向循環一個序列時,先正向定位序列,然後呼叫 <span class="pre">reversed()</span>
函數
>>> for i in reversed(range(1, 10, 2)): ... print(i) ... 7 3
如果要按某個指定順序循環一個序列,可以用 <span class="pre">sorted()</span>
函數,它可以在不改動原序列的基礎上傳回一個新的排好序的序列
>>> basket = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana'] >>> for f in sorted(set(basket)): ... print(f) ... apple banana orange pear
有時可能會想在python循環時修改列表內容,一般來說改為創建一個新列表是比較簡單且安全的
>>> import math >>> raw_data = [56.2, float('NaN'), 51.7, 55.3, 52.5, float('NaN'), 47.8] >>> filtered_data = [] >>> for value in raw_data: ... if not math.isnan(value): ... filtered_data.append(value) ... >>> filtered_data [56.2, 51.7, 55.3, 52.5, 47.8]
【相關推薦:python教程】
以上是Python循環的技巧介紹(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!