vote up 1 vote down star

I have this code:

chars = #some list

try:
    indx = chars.index(chars)
except ValueError:
    #doSomething
else:
   #doSomethingElse

I want to be able to do this because I don't like knowfully causing Exceptions:

chars = #some list

indx = chars.index(chars)

if indx == -1:
    #doSomething
else:
   #doSomethingElse

Is there a way I can do this?

flag

Note: You're using the same variable name (chars) for both the list you're searching, and the item to find. One of those should probably be different, unless you're searching self-referencing lists for where they reference themselves. – Brian Sep 25 '08 at 7:29
If you want efficient code, it's better to learn to enjoy exceptions than to worry about 'knowfully causing exceptions'. Exceptions, and causing them, is part and parcel of Python. – Thomas Wouters Sep 25 '08 at 10:17

3 Answers

vote up 9 vote down check

Note that the latter approach is going against the generally accepted "pythonic" philosophy of EAFP, or "It is Easier to Ask for Forgiveness than Permission.", while the former follows it.

link|flag
Which way is faster? Or is that a irrelevant question? Should I be using C? ;) – jjnguy Sep 25 '08 at 4:53
@jinguy: don't worry about speed. Just write code that reads easily. If you need better performance, run it through a profile -- good chance the slow part is not exception handling. – John Millikin Sep 25 '08 at 4:58
Thanks for fixing the typo, John! – Kevin Little Sep 25 '08 at 4:59
@john, thanks for the advice – jjnguy Sep 25 '08 at 5:02
@jinguy, usually the EAFP has superior performance for the non-error case, which occurs more often (in most cases :) than the error case. YMMV depending on the details. – Kevin Little Sep 25 '08 at 5:03
vote up 5 vote down
if element in mylist:
    index = mylist.index(element)
    # ... do something
else:
    # ... do something else
link|flag
I like! Thanks! – jjnguy Sep 25 '08 at 4:22
I can't believe I tagged the question with java and pythin. Thanks for fixing it. – jjnguy Sep 25 '08 at 4:25
Of course, this will search through the list twice, and for long lists will be asymptotically twice as slow... But I wouldn't know a better solution. – Thomas Sep 25 '08 at 4:48
vote up 0 vote down

For the specific case where your list is a sequence of single-character strings you can get what you want by changing the list to be searched to a string in advance (eg. ''.join(chars)).

You can then use the .find() method, which does work as you want. However, there's no corresponding method for lists or tuples.

Another possible option is to use a dictionary instead. eg.

d = dict((x, loc) for (loc,x) in enumerate(chars))
...
index = d.get(chars_to_find, -1)  # Second argument is default if not found.

This may also perform better if you're doing a lot of searches on the list. If it's just a single search on a throwaway list though, its not worth doing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.