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
Are you looking for this?
>>> word = "Help" >>> word[1:] 'elp'