I guess the simplest way to do it is like this: >>> data = [['foo','bar','baz'],['my','your'],['holy','grail']] >>> result=[w for d in data for w in d] >>> result ['foo', 'bar', 'baz', 'my', 'your', 'holy', 'grail'] >>>
-- http://mail.python.org/mailman/listinfo/python-list