首頁 > 後端開發 > Python教學 > 如何在 Python 中有效地對迭代器進行分塊?

如何在 Python 中有效地對迭代器進行分塊?

Patricia Arquette
發布: 2024-11-29 08:51:10
原創
1021 人瀏覽過

How Can I Efficiently Chunk an Iterator in Python?

以區塊的形式迭代迭代器

考慮一個場景,您擁有一個迭代器l = [1, 2, 3, 4 , 5, 6 , 7] 並希望將其劃分為大小為3 的區塊,從而產生一個包含[[1, 2, 3], [4, 5, 6], [7]].

itertools 解決方案

Python 標準庫在itertools 模組中提供了一個方便的解決方案:

import itertools

def grouper(iterable, n, *, incomplete='fill', fillvalue=None):
    """Collect data into non-overlapping fixed-length chunks or blocks."""

    args = [iter(iterable)] * n
    if incomplete == 'fill':
        return zip_longest(*args, fillvalue=fillvalue)
    elif incomplete == 'strict':
        return zip(*args, strict=True)
    elif incomplete == 'ignore':
        return zip(*args)
    else:
        raise ValueError('Expected fill, strict, or ignore')

chunks = list(grouper(l, 3))  # Output: [[1, 2, 3], [4, 5, 6], [7]]
登入後複製

標準庫增強版本

在itertools 配方的最新版本中引入的批次專用函數,精確地滿足了這種分塊要求:

from itertools import batched

chunks = list(batched(l, 3))  # Output: [[1, 2, 3], [4, 5, 6], [7]]
登入後複製

非通用解決方案

特別是對於序列,一種更簡單的方法可以有效地處理最後的區塊是:

chunks = [my_list[i:i + chunk_size] for i in range(0, len(my_list), chunk_size)]
登入後複製

以上是如何在 Python 中有效地對迭代器進行分塊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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