python max 函数利用key参数:可以利用key参数进行选择,比较哪一方面(比如绝对值)最大值例:绝对值最大值words = ( 1, 2 , -2, -1)max(words ,key = abs)