Once the program prints, it shuts down. How do I make it returns to the top of the code so that it loops, indefinitely asking for the users name?
code:
from time import sleep
name = raw_input ("Please enter your name: ")
print "Hello", name, "- good to see you!"
sleep(2.00)
pseudo-code:
from time import sleep
A
name = raw_input ("Please enter your name: ")
print "Hello", name, "- good to see you!"
sleep(2.00)
return to A