I’m writing a program where I want the cursor to print letters on the same line, but then delete them as well, as if a person was typing, made a mistake, deleted back to the mistake, and kept typing from there.
All I have so far is the ability to write them on the same line:
JavaScript
x
7
1
import sys, time
2
write = sys.stdout.write
3
4
for c in text:
5
write(c)
6
time.sleep(.5)
7
Advertisement
Answer
JavaScript
1
2
1
write('b') # <-- backup 1-character
2