[categories] [index] [all (553)] [latest]
s = "1234567890" [s[i:i+3] for i in xrange(0, len(s), 3)]
['123', '456', '789', '0']