the correct answer is true Using indexing, we may use the indices to access any element from an ordered sequence. String indexing in Python is zero-based.
The first character of the string is given the index 0, the second character is given the index 1, the third character is given the index 2, and so on. This indicates that we begin counting from zero. Additionally, negative indices can be used to retrieve characters in a string. The final character of the string is given an index of -1 in Python. The index for the very last character is -2. The string's first character is given an index in a similar manner (length of the string).
To learn more about indexing please click on below link
https://brainly.com/question/14241830
#SPJ4