So, I've been trying to make a small program that asks a user various questions and gives branching outputs based on the input, and I've been trying to make the print text appear on screen on character at a time, with a short delay in between each character, but on the same line. I've seen other various methods such as
print "H",
print "e",
etc, but that is very time consuming, requiring me to type out a print for each letter. I've seen other question on this topic, and tried the code placed in them, but none seem to work so far. Would there be an easier way to print what I want, or to make this into a print style function?
EDIT: Making this a function is probably REALLY easy, but I'm a bit of a beginner with Python