I'm trying to delete the last character I've printed from the previous line in python, e.g if I do print ("hello world") I will get hello world outputted, but I'm wondering after it's been outputted would there be a way to remove the d at the end of the output so it would now only say hello worl... in short is there a way to remove the end character of an already printed line?
Thanks