I've got a function in Python
def wordPrint():
print "word"
I want to use it to print 3 times on the same line using a for loop.
I would expect this code
for x in range(0,3):
wordPrint(),
to output this
word word word
But I get them on new lines