Suppose I have string="I still find the guy funny" I want the result to be I still find the guy funny but that after each letter a small pause is made
I thought about the code
for letra in cadena:
print(letra, end="")
time.sleep(0.3)
but the result is
a
u
n
m
e
p
a
r
e
c
e
g
r
a
c
i
or
s
or
e
l
c
h
a
v
or
How can I make it print on the same line with time pauses after each letter?