>>>>> NiklasRTZ <[email protected]> (N) wrote:

>N> Thank you. This seems to work:
>N> sorted("a AAA aa aaaaa  sdfsdfsdfsdf vv".split(' '),lambda a,b: len(a)-
>N> len(b))[-1]
>N> 'sdfsdfsdfsdf'

simpler:

sorted("a AAA aa aaaaa  sdfsdfsdfsdf vv".split(' '), key=len)[-1]
-- 
Piet van Oostrum <[email protected]>
URL: http://pietvanoostrum.com [PGP 8DAE142BE17999C4]
Private email: [email protected]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to