Python list.index throws exception when index not found

前端 未结 10 1025
抹茶落季
抹茶落季 2020-12-09 17:00

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 d

相关标签:
10条回答
  • 2020-12-09 17:27

    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
    
    0 讨论(0)
  • 2020-12-09 17:27

    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.

    0 讨论(0)
  • 2020-12-09 17:30

    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.

    0 讨论(0)
  • 2020-12-09 17:38

    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.

    0 讨论(0)
  • 2020-12-09 17:41

    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!

    0 讨论(0)
  • 2020-12-09 17:45

    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.

    0 讨论(0)
提交回复
热议问题