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
junk by bcharder
20 days ago
tcl by egavilan
29 days ago
tcl by Stu
31 days ago
tcl by Stu
31 days ago
tcl by oldlaptop
64 days ago
tcl by oldlaptop
64 days ago
tcl by Molnija Bjornsson
70 days ago
tcl by Molnija Bjornsson
70 days ago
tcl by zmoment
70 days ago
tcl by zmoment
70 days ago
Submit
New paste
Documentation
From Jabber