What does this key=func
part mean in max(a,b,c,key=func)
here https://docs.python.org/2/library/functions.html#min?
I know how does this function work in Python. But usually I see it used just simply as
z = max(a, b, c)
But in Python docs I've found this part and I don't understand it. Is it some additional optional feature of this function or what?