How are "key" functions more efficient than comparison functions in python's sorted?

In the Transforming Code into Beautiful, Idiomatic Python video (link starts at 10:07), the speaker says that using key instead of the cmp comparison function for sorting is more efficient. To para...