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
>
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
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