Re: Passing a tuple to a function as multiple arguments

2007-09-06 Thread Gabriel Genellina
En Fri, 07 Sep 2007 00:02:12 -0300, Ben Warren <[EMAIL PROTECTED]> escribi�: > Hello, > > Let's say I have a function with a variable number of arguments (please > ignore syntax errors): > > def myfunc(a,b,c,d,...): > > and I have a tuple whose contents I want to pass to the function. The >

Re: Passing a tuple to a function as multiple arguments

2007-09-06 Thread George Sakkis
On Sep 6, 11:02 pm, Ben Warren <[EMAIL PROTECTED]> wrote: > Hello, > > Let's say I have a function with a variable number of arguments (please > ignore syntax errors): > > def myfunc(a,b,c,d,...): > > and I have a tuple whose contents I want to pass to the function. The number > of elements in t

Passing a tuple to a function as multiple arguments

2007-09-06 Thread Ben Warren
Hello, Let's say I have a function with a variable number of arguments (please ignore syntax errors): def myfunc(a,b,c,d,...): and I have a tuple whose contents I want to pass to the function. The number of elements in the tuple will not always be the same. T = A,B,C,D,... Is there a way th