Files
Fulfillment-Backend/utils/list_utils.py
2024-09-02 19:19:41 +03:00

4 lines
95 B
Python

def chunk_list(lst, n) -> list:
for i in range(0, len(lst), n):
yield lst[i:i + n]