Python list.index throws exception when index not found
Asked Answered
I

12

29

Why does list.index throw an exception, instead of using an arbitrary value (for example, -1)? What's the idea behind this?

To me it looks cleaner to deal with special values, rather than exceptions.

EDIT: I didn't realize -1 is a potentially valid value. Nevertheless, why not something else? How about a value of None?

Instal answered 23/3, 2009 at 16:58 Comment(1)
Just one comment: everybody says -1 is a valid index, which is true, but that doesn't mean it still couldn't have been used a "not found" result from index(). It's not as if index() would ever return -1 in normal operations. I find it frustrating that I have to write a whole try…except block, and absorb the overhead of handling an exception in order to deal with what is not necessarily an error condition.Catercorner
D
19

Because -1 is itself a valid index. It could use a different value, such as None, but that wouldn't be useful, which -1 can be in other situations (thus str.find()), and would amount simply to error-checking, which is exactly what exceptions are for.

Dogmatism answered 23/3, 2009 at 17:2 Comment(1)
Is an item not appearing in a list an exceptional situation tho?Dobla
C
19

Well, the special value would actually have to be None, because -1 is a valid index (meaning the last element of a list).

You can emulate this behavior by:

idx = l.index(x) if x in l else None
Crocodilian answered 23/3, 2009 at 17:4 Comment(3)
well, it's that or try/except.Crocodilian
It does seem at times that Python has been written so you write as much code as possible for the most simple things. Thanks for the answer!Saleh
actually try/catch alternative looks faster, specially for worst case, as can be seen in this answer. I also verified this on python 3.8.5Earnestineearnings
S
10

To add to Devin's response: This is an old debate between special return values versus exceptions. Many programming gurus prefer an exception because on an exception, I get to see the whole stacktrace and immediate infer what is wrong.

Statist answered 23/3, 2009 at 17:5 Comment(8)
This was what I was wondering: special return values versus exceptions.Instal
+1: Exceptions don't depend on some value being "sacred". Exceptions are often simpler to work with.Steinman
The exceptiophobic folks might argue that index not finding an object is not an error, and exceptions should only be used on errors. I am for exceptions in this case. Exceptions can be faster since they don't have to do a check on success. Python prefers exceptions in many cases due to this. In other words, if index finds an object, execution continues with no condition check. If index finds nothing, you are thrown into the catch block with no checks.Chinaware
The last comment ignores the fact that the underlying function of course requires to check for the condition(s) that make it fail. The additional check for the special value is negligible. The bigger question is indeed if not finding anything is an error. this of course depends on the use case. However, this is a low-level function that should not mandate any specific use by making it necessary to rely on slow exception handling hence this is clearly bad design because the only alternative is to re-implement it or use even more performance-reducing techniques like checking with count first.Radiothorium
Using exceptions for flow control is both slow, and a bad practice in general.Dobla
@Dobla Python convention in this regard is different from C. Check this: https://mcmap.net/q/49354/-what-is-the-eafp-principle-in-pythonStatist
@amitkumar making an anti-pattern a convention doesn't make it less of an anti-pattern.Dobla
@Dobla It's a language design choice to be "slow" to make it easy to use; Python is now the most popular language in many fields where non-programmers program, such as science, where its ease of use saves much more societal resources (scientist's paychecks) than its performance would save energy costs. Calling something an unconditional anti-pattern is a design anti-pattern ;)Balmoral
S
4

The "exception-vs-error value" debate is partly about code clarity. Consider code with an error value:

idx = sequence.index(x)
if idx == ERROR:
    # do error processing
else:
    print '%s occurred at position %s.' % (x, idx)

The error handling ends up stuffed in the middle of our algorithm, obscuring program flow. On the other hand:

try:
    idx = sequence.index(x)
    print '%s occurred at position %s.' % (x, idx)
except IndexError:
    # do error processing

In this case, the amount of code is effectively the same, but the main algorithm is unbroken by error handling.

Shanaeshanahan answered 23/3, 2009 at 21:46 Comment(2)
Using exceptions for flow control is a well known bad practice. Yes, python forces it on us in this case, but while the two code blocks in your answer are "effectively the same", they have side effects that are very different, especially if you did this in another language like C++/Java/C#/etc.Dobla
Flow control is no known to be a bad practice by the python language designers. Every time a for loop terminates, it uses a thrown exception. This is by design. That is definitely flow control, and it's built into the language. In some languages, the idiomatic style discourages exceptions for flow control, but not python.Misty
B
3

It's mainly to ensure that errors are caught as soon as possible. For example, consider the following:

l = [1, 2, 3]
x = l.index("foo")  #normally, this will raise an error
l[x]  #However, if line 2 returned None, it would error here

You'll notice that an error would get thrown at l[x] rather than at x = l.index("foo") if index were to return None. In this example, that's not really a big deal. But imagine that the third line is in some completely different place in a million-line program. This can lead to a bit of a debugging nightmare.

Bomke answered 23/3, 2009 at 17:28 Comment(0)
B
2

In Python, -1 is a valid index, meaning a number from the end of the list (instead of the beginning), so if you were to do

idx = mylist.index(someval)
nextval = mylist[idx+1]

then you would get the first value of the array, instead of realising there was an error. This way you can catch the exception and deal with it. If you don't want exceptions, then just check beforehand:

if someval in mylist:
    idx = mylist.index(someval)

Edit: There's not really any point in returning None, because if you're going to test for None, you might as well test whether the value is in the list as above!

Bedpan answered 23/3, 2009 at 17:4 Comment(0)
P
1

I agree with Devin Jeanpierre, and would add that dealing with special values may look good in small example cases but (with a few notable exceptions, e.g. NaN in FPUs and Null in SQL) it doesn't scale nearly as well. The only time it works is where:

  • You've typically got lots of nested homogeneous processing (e.g. math or SQL)
  • You don't care about distinguishing error types
  • You don't care where the error occurred
  • The operations are pure functions, with no side effects.
  • Failure can be given a reasonable meaning at the higher level (e.g. "No rows matched")
Pondweed answered 23/3, 2009 at 17:7 Comment(0)
T
1
def GetListIndex(list, searchString):
    try:
        return list.index(searchString)

    except ValueError:
        return False

    except Exception:
        raise
Tecu answered 16/2, 2015 at 10:38 Comment(0)
K
1

Specified here is I think quite a good way which simply returns [] where no matches are found.

mylist = ['a','b','abcde', 'a']
searchstring = 'ss'
[i for i, x in enumerate(mylist) if x == searchstring]
Kilogram answered 21/10, 2022 at 12:47 Comment(0)
C
0

One simple idea: -1 is perfectly usable as an index (as are other negative values).

Cuneal answered 23/3, 2009 at 17:4 Comment(0)
M
0

It's a semantic argument. If you want to know the index of an element, you are claiming that it already exists in the list. If you want to know whether or not it exists, you should use in.

Misty answered 23/3, 2009 at 17:7 Comment(1)
… and if you claim that it exists an exception is the correct way to handle it.Kioto
M
0

If you want to avoid a try-except, then just add the search value to the end of the list. When the value is not found, it will return len(list), which, unlike -1, is not a valid index of the list.

idx = (list + [a]).index(a)
if idx == len(list):
    print('it was not found')
else:
    print('it was found at',idx)

this can work for strings also, but change list + [a] to str + a

Marcellemarcellina answered 12/6, 2024 at 19:42 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.