🌈 搜索
📅  最后修改于: 2022-03-11 14:46:43.451000             🧑  作者: Mango
def chunks(l, n): n = max(1, n) return (l[i:i + n] for i in range(0, len(l), n))