Output being printed in the same line, Py3k - by edoi In Python 2.x, I'd write... for i in range(5): print i, ...to get integers from 0 to 4 printed in the same row. How to do that in Python 3.x, since print is a function now? Read the article