I have a list containing some tuples as well as normal strings like below :
a = ['sore', ('PHENOMENA', 'sore'), 'throat', ('ANATOMY', 'throat'), 'and', 'leg', ('ANATOMY', 'leg')]
I want to write it in a space separated text file in a format like:
sore ('PHENOMENA', 'sore') throat ('ANATOMY', 'throat') and leg ('ANATOMY', 'leg')