I want to do something like this:
fib = 1 foo = (arg): print arg, argName # the name of the variable that was put in for arg foo(fib)
A
def print_args(**kwargs): for name,value in kwargs.iteritems(): print name, value