Hello I have this list :
a = [["Hello", "Good Bye"],["Country", "Test"]]
And I would like to concatenate the sub items I mean I would like to have this :
a = ["Hello Good Bye", "Country Test"]
Could you help me please ?
Thank you very much !