Nir <nircher...@gmail.com>:

>>>> k= [s.upper for s in k]
>>>> k
> [<built-in method upper of str object at 0x00000000021B2AF8>, <built-in 
> method upper of str object at 0x0000000002283F58>]
>
> Why doesn't the python interpreter just return
> ['HI, 'BOSS'] ?

Try:

   k = [ s.upper() for s in k ]


Marko
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to