[Python-ideas] Why not f(*my_list, *my_other_list) ?

Oleg Broytman phd at phd.pp.ru
Fri Sep 10 18:57:13 CEST 2010


On Fri, Sep 10, 2010 at 06:37:44PM +0200, cool-RR wrote:
> f(*my_list, *my_other_list)

   Not every one-lined should be a syntax. Just call

f(*(my_list + my_other_list))

Oleg.
-- 
     Oleg Broytman            http://phd.pp.ru/            phd at phd.pp.ru
           Programmers don't die, they just GOSUB without RETURN.



More information about the Python-ideas mailing list