Python noob here. Given an index i in a list, is there any built-in way to find it's negative index. Currently I'm using:
neg_index = i - len(list)
|
Python noob here. Given an index i in a list, is there any built-in way to find it's negative index. Currently I'm using:
|
|||||||||||
|
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.
|
The solution proposed by you can be derived directly from the definition of negative index: python implicitly add But it's a bit strange that you need to find negative index. I think this task is not tipical. |
|||
|
Your solution is correct, there is no better way to do that. |
|||||||||
|
|
if you don't like the way it looks to do that, you can make a function to do it for you. if you don't know much about functions, you can find a tutorial on them here
then you could use it like this
or if you wan't to be more technical, you can make a class with this function as an attribute. in this example, we inherit of the class 'list', so negIndexClass has everything that the list class has, plus a negIndex function
so this would be used like this:
|
|||
|
|