首頁  >  文章  >  後端開發  >  Python循環的技巧介紹(附程式碼)

Python循環的技巧介紹(附程式碼)

不言
不言轉載
2019-04-15 10:54:092328瀏覽

這篇文章帶給大家的內容是關於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([&#39;tic&#39;, &#39;tac&#39;, &#39;toe&#39;]):
...     print(i, v)
...
0 tic
1 tac
2 toe

當同時在兩個或更多序列中循環時,可以用 <span class="pre">zip()</span> 函數將其內元素一一配對。

>>> questions = [&#39;name&#39;, &#39;quest&#39;, &#39;favorite color&#39;]
>>> answers = [&#39;lancelot&#39;, &#39;the holy grail&#39;, &#39;blue&#39;]
>>> for q, a in zip(questions, answers):
...     print(&#39;What is your {0}?  It is {1}.&#39;.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 = [&#39;apple&#39;, &#39;orange&#39;, &#39;apple&#39;, &#39;pear&#39;, &#39;orange&#39;, &#39;banana&#39;]
>>> for f in sorted(set(basket)):
...     print(f)
...
apple
banana
orange
pear

有時可能會想在python循環時修改列表內容,一般來說改為創建一個新列表是比較簡單且安全的

>>> import math
>>> raw_data = [56.2, float(&#39;NaN&#39;), 51.7, 55.3, 52.5, float(&#39;NaN&#39;), 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中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除