In this code:
word='pardis'
print(len(word[1:]))
the output is 5. I also try this code for some other words and I find out that the output is length of word minus 1. My question is what is [1:] meaning and what it does? I am unfamiliar with it. I guess It is the reason that output is length minus 1