📜  python 块迭代器 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:52.998000             🧑  作者: Mango

代码示例1
def grouper(n, iterable, fillvalue=None):
    "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
    args = [iter(iterable)] * n
    return izip_longest(fillvalue=fillvalue, *args)