Given
myList = ['cat', 'dog', 'mouse' ... 'bear']
what is the easiest way to find out what index 'dog' is at?
Sean,
>>> myList = ['cat', 'dog', 'mouse','bear'] >>> myList.index('dog') 1 >>>
wes
-- http://mail.python.org/mailman/listinfo/python-list