I am doing the same, practicing with Python 3 in an attempt to save some of my code findings. I did find the the list() function to convert the object to a list, but could not join it as Python 2 presents the message. Specifically, my output is:
[‘I’, ’ ', ‘a’, ‘m’, ’ ', ‘a’, ‘n’, ‘o’, ‘t’, ‘h’, ‘e’, ‘r’, ’ ', ‘s’, ‘e’, ‘c’, ‘r’, ‘e’, ‘t’, ’ ', ‘m’, ‘e’, ‘s’, ‘s’, ‘a’, ‘g’, ‘e’, ‘!’]
I don’t understand your code in the following line:
message=’’.join(message)
nor was my attempt recognized:
message = join(message)
I am using Python 3.70b3
Any help would be appreciated.