With string indices, is there a way to slice to end of string without using len()? Negative indices start from the end, but [-1] omits the final character.
w
Or even:
>>> word = "Help" >>> word[-3:] 'elp'