passing *args "recursively"

Jerry Hill malaclypse2 at gmail.com
Mon May 12 12:27:32 EDT 2008


On Mon, May 12, 2008 at 12:19 PM, Guillermo
<guillermo.listas at googlemail.com> wrote:
>  def func1(*args):
>     print args # (1, 2, 3)
>     func2(args)

change this line to:
    func2(*args)

-- 
Jerry



More information about the Python-list mailing list