I searched about it and got the following, python obtain variable name of argument in a function but i am not getting required answer and am actually getting an error saying add () takes exactly 0 arguments when i used kwargs. So reposted to get an answer if there is any.
i have the following code,
def add ( arg1, arg2):  
     z = arg1 + arg2
     print arg1Name, arg2Name, z
x = 10
y = 5  
add( x,y )
i want output as
x y 15
 
     
     
     
     
     
    