#String Indexing s = 'abcdefghijklmnopqrstuvwxyz' #Request 4 letter of the alphabet print(s[3]) #request 23rd letter of the alphabet print(s[22]) #Let's use negative indexing #note, negative indexing does not start at 0....why? print(s[-4])