Very popular answer but my one differs from others. I have a list:
s = [(1, 2, 3),
(4, 5, 6),
(7, 8, 9)]
I need without another lists combine my lists inside and make one big list. I need them to be string so I do
[map(str, x) for x in s]
But in this way I get [['1', '2', '3'], ['4', '5', '6'], ['7', '8', '9']]
So I need ['1', '2', '3', '4', '5', '6', '7', '8', '9']