Prints certain parts of a string input.
# Prints just 'H' print('Hello'[0]) # Print a range of letters, 'Hell' in this case print('Hello'[0:3])