For the following code, why is the answer not 'yoif!' with the exclamation mark?
>>> s = 'Python is fun!'
>>> s[1:12:3]
>'yoif'
Why is the exclamation mark excluded, since it also has an index number, as shown by the following code (continued from above)?
>>> s[13]
>'!'