function arguments

Joe Laughlin Joseph.V.Laughlin at boeing.com
Wed Sep 15 16:05:44 EDT 2004


I want to do something like the following

def foo(list_of_args):
    call_other_function(arg1, arg2, arg3)
    # Where arg1 == "x", arg2 == "y", etc.
    # Should work with any list size

foo(["x", "y", "z"])

Make sense?  Need clarification?  In summary, I want to pass a list of
arguments to a function.  The function needs to pass each argument in the
list to a different function.

Thanks,
Joe





More information about the Python-list mailing list