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 mookie
27 days ago
tcl by oldlaptop
32 days ago
tcl by rhobart
44 days ago
tcl by rhobart
44 days ago
tcl by rhobart
45 days ago
tcl by Bradipo
45 days ago
tcl by rhobart
45 days ago
tcl by sssc
49 days ago
tcl by mookie
65 days ago
tcl by JMN
73 days ago
Submit
New paste
Documentation
From Jabber