I have a list 'decrypted_characters' that looks like this
['mathematician', 'to', 'present', 'a', 'proof', 'of', 'the', 'sensitivity']
I want it to look like a paragraph so I tried
decrypted_word = ''.join(decrypted_characters)
and when I print it looks like
mathematiciantopresentaproofofthesensitivity
How to add spaces after each element so that it looks like sentence? I want it to look like
mathematician to present a proof of the sensitivity
Thanks!