I need to transform a numpy array:
array(['#fear.', 'Getting so angry.',
'Change your mind.', ..., 'birthday boy.',
'Living in the desert.'],
dtype='<U234')
Into a .txt file, I am a bit stuck on how to do so with a numpy array, any hint? Thank you
What I want to achieve is a big .txt file where all the strings are together, like that:
'#fear, Getting so angry, Change your mind, birthday boy, Living in the desert'
The sentences does not need to be separated by a comma