You can do more than just print text. print also has several parameters to help you.
Argument sep: place a string between arguments.
Do you need to print a list of words separated by a comma or some other string?
>>> print('apples','bannas', 'cherries', sep=', ')
apple, bannas, cherries...