This is python syntax related question... Is there more elegant and more pythonic way of doing this:
>>> test = [[1,2], [3,4,5], [1,2,3,4,5,6]]
>>> result = []
>>> for i in test: result += i
>>> result
[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6]
Join multiple list (stored inside another list) to one long list?