Strings are separated on whitespace by default. If we code print(words_list), we'll see four values in the separated list.
print(words_list),
Make sure to pick print followed by ( and then words_list, ).
print
(
words_list
)