How do I merge multiple lists into one list?

list, merge, python

Solution

import itertools
ab = itertools.chain(['it'], ['was'], ['annoying'])
list(ab)

Just another method....

Problem

I have many lists: ``` ['it'] ['was'] ['annoying'] ``` I want to merge those into a single list: ``` ['it', 'was', 'annoying'] ```

Original source

Related problems