>>> from itertools import chain >>> list_of_lists = [['a', 'b', 'c'], ['d', 'e', 'f']] >>> list(chain(*list_of_lists)) ['a', 'b', 'c', 'd', 'e', 'f']