A comment I saw on Google+ was, "Is there an easy way to find out what number element of a list is maximum / minimum in Python?" The first line I came up with was the code on the first line, but is the second line better?
max(xrange(len(x)), key=lambda i: x[i])
max(enumerate(x), key=lambda x: x[1])[0]