The program should get each of these punctuation characters replaced by that character surrounded by two spaces.
I tried this:
sent = re.sub('[!,\'!?.]',' \1 ', sent)
but it just printed some weird icon instead of those punctuation characters
This was done using python 3.