So i am currently trying to make something that will print .
and remove it then print ..
and also remove it then print ...
When i tried using sys module to remove the prevous text this was the output: lol [Ktest
so it basically adds a [K
to the next line.
I also tried using another method so instead of removing the prevous text it would just add onto it like:
import time
print("lol",end="")
time.sleep(1)
print("test")
it did work in IDLE but when i tried to use it by opening the file in the command promt it waited for 1 second and then just gave loltest
without any delay between them. So nothing i found in the internet worked for me.