python 3 print in same line code example
Example 1: python 2 print in same line
from __future__ import print_function
print("\r Running... xxx", end="") # works across both major versions
Example 2: python print same line
# Python 2 only
print "Seven"
# Backwards compatible (also fastest)
import sys
sys.stdout.write("Nice film")
# Python 3 only
print("Mob Psycho 100", end="")