Skip to content
Advertisement

Create a typewriter-effect animation for strings in Python

Just like in the movies and in games, the location of a place comes up on screen as if it’s being typed live. I want to make a game about escaping a maze in python. At the start of the game it gives the background information of the game:

JavaScript

Under the variables, I tried to do a for loop for each line similar to this:

JavaScript

The only problem with this is that it print one letter per line. The timing of it is ok, but how can I get it to go on one line?

Advertisement

Answer

Because you tagged your question with python 3 I will provide a python 3 solution:

  1. Change your end character of print to an empty string: print(..., end='')
  2. Add sys.stdout.flush() to make it print instantly (because the output is buffered)

Final code:

JavaScript

Making it random is also very simple.

  1. Add this import:

    JavaScript
  2. Change your sleep call to the following:

    JavaScript
Advertisement