0

So I've been trying to use the backspace (\b) character in my code, but for some reason, my python does not actually delete a character, it literally inserts a backspace character. Is there any way to go around this issue, or do I have to use another way?

My Code:

print('Hello World!\b')

The output:

Hello World!
HelloBot
  • 1
  • 4

1 Answers1

0

If you are doing this in IDLE , know that \b is not supported.