I was wondering if we can print like row-wise in python.
Basically I have a loop which might go on million times and I am printing out some strategic counts in that loop
You can add a comma after your call to print to avoid the newline:
print 3, print 4, # produces 3 4