如何获取列表中项目的最大项目

时间:2015-06-13 02:38:42

标签: python

如果没有forloop,有没有办法做到以下几点?

list = ['https:', '', 'store.playstation.com', 'chihiro-api', 
        'viewfinder', 'BR', 'pt', '999', 'UV0004-NPVA17938_CN-0000000000029839'
        ]
get_max_lengthed_item(list)
==> 'UV0004-NPVA17938_CN-0000000000029839'

1 个答案:

答案 0 :(得分:2)

您可以使用max功能的key属性。

max(list, key=len)