2 Answers
+ 7
In Python 3, printing is a function. When you call
print ('hello world')
Python translates it to
print ('hello world', end = '\n')
You can change end to whatever you want.
print ('hello world', end = '')
print ('hello world', end = ' ')
+ 6
thanks Detlef