So the function len(string) is showing an additional index than what is actually displayed in the string, I thought that len() starts counting from the index 0 ?
The index length after the program is execute is shown in the terminal below
In this example it should be a total of 8 index rather than 9
EDIT:
If len() returns the length then how comes when i print(s[0:3]) it returns 928 ?
Shouldnt it return 0, 1, 2, 3 indexes ? so should be 4 digits in total ?