If you really want the sub elements to be lists vs tuples:
In [9]: [list(t) for t in zip(*[iter(range(1,10))]*3)]
Out[9]: [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Or, if you want to include the left over elements that would be truncated by zip
, use a slice syntax:
In [16]: l=range(14)
In [17]: [l[i:i+3] for i in range(0,len(l),3)]
Out[17]: [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9, 10, 11], [12, 13]]