I have a list of tuples, where all emlements in the tuples are strings. It could look like this:
my_list = [('a', 'b', 'c'), ('d', 'e')]
I want to convert this to a string so it would look like 'a b c d e'. I can use ' '.join( ... ) but I'm unsure of what argument I should use.