chunk vs batched
Posted to
tcl
by Bradipo at Tue Jun 17 16:35:20 GMT 2025
view raw
def chunk(l,n):
def _chunk(i):
return
[i[:n]] + _chunk(i[n:])
if
len(i) > n
else
[i]
return
_chunk(l)
Recent Posts
tcl by apn
4 days ago
tcl by arjen
19 days ago
tcl by cgm
28 days ago
tcl by cgm
28 days ago
tcl by alan
35 days ago
tcl by mookie
57 days ago
tcl by mookie
57 days ago
tcl by mookie
57 days ago
tcl by schelte
59 days ago
tcl by oldlaptop
71 days ago
Submit
New paste
Documentation
From Jabber