1>>> from __future__ import print_function
2>>> print('one', 'two', 'three', sep='')
3onetwothree
4#doesn't work for me, but still hope it might work for you :)
1print("The", "South", "American", sep="_", end=" countries")
2 # The_South_American countries