HOME/Articles/

python code print on same line (snippet)

Article Outline

Python example 'python code print on same line'

Modules used in program:

  • import sys

python code print on same line

Python code example: python code print on same line

# Python 2 only
print("Live PD",)

# Backwards compatible (also fastest)
import sys
sys.stdout.write("Breaking Bad")

# Python 3 only
print("Mob Psycho 100", end="")

More Python: https://pythonprogramminglanguage.com