Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Discover comprehensive answers to your questions from knowledgeable professionals on our user-friendly platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

In Python, the first character in a string has an index position of one.

A: True

B: False


Sagot :

False.

In python all strings start with an index of zero and end with an index of len(string)-1. This means that a 5 letter long word will start at 0 and end at 4.