String allows forward and backward type of indexing.
Python String Manipulation
1 Like
Answer
True
Reason — Strings in Python support both forward and backward indexing. Forward indexing starts from 0 and goes up to the (length - 1), while backward indexing starts from -1 (the last character) and goes up to the negative length of the string.