I am trying to print 1 letter at a time on the same line, but it prints it all at once instead
this is the code I tried:
import time
text = ["f", "i", "n", "e"]
x = 0
while x <= 3:
    print(text[0], end="")
    text.remove(text[0])
    x += 1
    time.sleep(0.1)
 
     
     
    