Please use a spoiler flag.
This comment is hidden because it contains spoiler information about the solution
When doing substring in python the "end" index is not included in the result. So in your original code for "test" the substring would be [1:2] meaning that only index 1 would be included.
Loading collection data...
Please use a spoiler flag.
This comment is hidden because it contains spoiler information about the solution
When doing substring in python the "end" index is not included in the result. So in your original code for "test" the substring would be [1:2] meaning that only index 1 would be included.