Lets say I have a string that consists of x unknown chars. How could I get char nr. 13 or char nr. x-14?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
First make sure the required number is a valid index for the string from beginning or end , then you can simply use array subscript notation.
use
|
|||||||||
|
Now, For positive index ranges for x is from 0 to 44 (i.e. length - 1)
For Negative index, index ranges from -1 to -45
For negative index, negative [length -1] i.e. the last valid value of positive index will give second list element as the list is read in reverse order,
Other, index's examples,
|
||||
|
Another recommended exersice for understanding lists and indexes:
|
|||
|
|
|
This should further clarify the points:
Input 3 Output m Input -3 Output p |
|||
|
|
|
Python.org has an excellent section on strings here. Scroll down to where it says "slice notation". |
|||
|
|
