Appearance
将列表分割成指定大小的子列表。
from usepy import chunk
lst
size
>>> chunk([1, 2, 3, 4, 5], 2) [[1, 2], [3, 4], [5]]