I was working with some strings and coudn't get myself to understand how the slice works, The following outputs "i"
"input"[0::-1]
whereas the following outputs "tupni"
"input"[::-1]
What I don't get is the first one and how the slicing with negative indices work