My code reads
import time
a = raw_input("Enter a string: ")
b = len(a)
#print 1st letter of string
time.sleep(2)
#print 2nd letter of string
#continue doing that until the last character in the string
What would I need to do to make my code do that in Python 2.7? Prods in the right direction would be much appreciated.
Thank you.