print(x[0]) # character at the 0th index, 'H' print(x[4]) # character at the 4th index, 'o' print(x[-1]) # character at the -1th index, '!' ...