when i store 'Python' in A and try to print A[-6] it prints P but why it shows error when i try to print A[6] . Also it prints 'P' for both A[-0] and A[0] but result for A[1] is 'y' and A[-1] is 'n' .
|
closed as not a real question by Mitch Wheat, Mr. Alien, Jeff Mercado, jdi, Andro Selva Nov 17 '12 at 5:30
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Python strings are python lists of chars (sort of an array of chars), so they share a numbering scheme... and also you can think of your string as ['P','y','t','h','o','n'] Lists numbering scheme: numbering starts with 0 as in C: so A[0]=='P'(first element),...,A[5]=='n'(last element) and that's why A[6] is out of bound - same as in C. negative indexing is a Python feature: you can access python lists from the end - numbering from the end starts with -1, so A[-1] is the last element in the list, in your case A[-1]==A[5]=='n'; then obviously A[-2]=='o', etc... A[-5]=='y' and A[-6]=='P'(first element). A[0]==A[-0], just by definition, I assume... |
||||
|