Python 2 Imprimer SEP End

>>> from __future__ import print_function
>>> print('one', 'two', 'three', sep='')
onetwothree
#doesn't work for me, but still hope it might work for you :)
Wrong Wombat