首頁 > 後端開發 > Python教學 > 如何使用成對或 N 元組分組在 Python 中迭代列表?

如何使用成對或 N 元組分組在 Python 中迭代列表?

Barbara Streisand
發布: 2024-12-09 10:58:12
原創
703 人瀏覽過

How Can I Iterate Through a List in Python Using Pairwise or N-Tuple Grouping?

在列表中執行成對迭代

問題:

在給定在列表中,迭代成對的元素來執行特定的操作

實作:

成對迭代的Pythonic方法是使用pairwise() 或grouped() 函數:

def pairwise(iterable):
    "s -> (s0, s1), (s2, s3), (s4, s5), ..."
    a = iter(iterable)
    return zip(a, a)

l = [1,2,3,4,5,6]
for x, y in pairwise(l):
    print("{} + {} = {}".format(x, y, x + y))
登入後複製

函數將迭代與其自身壓縮,從而產生對

廣義分組:

要將n 元組中的元素分組,請使用grouped()函數:

def grouped(iterable, n):
    "s -> (s0,s1,s2,...sn-1), (sn,sn+1,sn+2,...s2n-1), (s2n,s2n+1,s2n+2,...s3n-1), ..."
    return zip(*[iter(iterable)]*n)
登入後複製

例如,迭代列表l 中的三元組上圖:

for x, y, z in grouped(l, 3):
    print("{} + {} + {} = {}".format(x, y, z, x + y + z))
登入後複製

使用Mypy 進行類型檢查:

使用Mypy 進行類型檢查:

from typing import Iterable, Tuple, TypeVar

T = TypeVar("T")

def grouped(iterable: Iterable[T], n=2) -> Iterable[Tuple[T, ...]]:
    "s -> (s0,s1,s2,...sn-1), (sn,sn+1,sn+2,...s2n-1), ..."
    return zip(*[iter(iterable)] * n)
登入後複製
使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 進行類型檢查:使用Mypy 在Python 3 中進行類型檢查:

以上是如何使用成對或 N 元組分組在 Python 中迭代列表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板