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
word="Help" word[:]
'Help'
I hope this helps you