I got it to work forwardly with this code: So if the user entered Steve as the name it says, S! t! e! v! e!
for i in name[0:]:
time.sleep(1)
print(i ,end="! ")
I need it to print it out backwards like this. e! v! e! t! s! I know I could get it to print the work backwards by doing this:
print(lowerName[::-1] + "!")
But I need each letter to be followed by an exclamation mark and each letter to come out 1 second before the next, and ideas?
Everyone's help is appreciated, Thanks!

New Topic/Question
Reply



MultiQuote




|