OverIQ.com
Run (or Hit F9)
s1 = "hello" print(s1[0]) # get the first character print(s1[1]) # get the second character print(s1[2]) # get the third character print(s1[3]) # get the fourth character print(s1[4]) # get the fifth character