python2, 3
import sys sys.stdout.write('hello world')
python3
print('hello world', end="")
python2
print('hello world', )