explain diffrent indexing patterns in python strings?
Answers
Answered by
1
Answer:
String indexing also follows the same as list and tuple indexing...!
it starts from 0 to n, where n is the index of last variable
for example:
let the string be Abcd
where A index is 0, b index is 1, c index is 2, d index is 3
Hope you may get it
Mark as brainliest
Thank You...
Similar questions