dynamic argument name for functions

mark rkmr.em at gmail.com
Fri Jan 12 15:17:04 EST 2007


I want to pass a value to an argument of a function. The argument name is
dynamic and is stored in a
variable. How do I call the function using with arg_name and value as the
parameters.
thanks
mark

For ex:
def function(arg1='None', arg2='None', arg3='None'):
      print arg1
      print arg2
      print arg3


arg_name = 'arg1'
arg_value = 'i am passing a value to argument 1'
function(???????)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20070112/9c022c30/attachment.html>


More information about the Python-list mailing list