I want print paramater's name in a python function
First, a variable is assigned a value.Then, pass the variable to a function. Last,I want to print str(variable) inner the function.
varibale = 1234
def f(x):
print(....)
return
f(varibale)
Expected output is print out the 'varibale' whatever variable is. if a = 1 ==> f(x), expected output is 'a';if b = 2 ==> f(x), expected output is 'b'.....