I have this array of strings that I have split element wise so I can do stuff to it. Now I want to return them back into a sentence.
my_array = (['T', 'e', 's', 't', ' ', 'w', 'o', 'r', 'd', 's', '!'])
Is there a way to join them togeter back into a sentence whilst keeping the formatting? Ideal output would be something similar to the following:
joined_array = (['Test Words!'])