-1

I wonder if it is possible to pause during printing text in python 3.x on the same line? For example, I might want to print a word, and then pause before printing the next word.

Jiale Yu
  • 13
  • 3
  • 1
    Unless I misunderstood something, you can just print a word (check this answer: http://stackoverflow.com/questions/3249524/print-in-one-line-dynamically), then sleep. Repeat as desired. – Gediminas Masaitis Mar 02 '16 at 22:36

1 Answers1

0

Have you tried this?

import time
print("Hello,", end="")
time.sleep(1)
print("World!")

The end="" tells the code to end the print() command with "" rather than "\n" in case you were wondering.

Mixone
  • 1,327
  • 1
  • 13
  • 24