How do I merge multiple lists into one list?

Viewed 419925

I have many lists:

['it']
['was']
['annoying']

I want to merge those into a single list:

['it', 'was', 'annoying']
3 Answers
Related