我想做这样的事情:
fib = 1 foo = (arg): print arg, argName # the name of the variable that was put in for arg foo(fib)
并得到这个返回:
1, fib
python
python ×1