A very popular answer, but mine is different from the others. I have a list:
s = [(1, 2, 3),
(4, 5, 6),
(7, 8, 9)]
Without other lists, I need to combine my lists inside and make one big list. I need them to be strings, so I do
[map(str, x) for x in s]
But that way I get [['1', '2', '3'], ['4', '5', '6'], ['7', '8', '9']]
Therefore i need ['1', '2', '3', '4', '5', '6', '7', '8', '9']