def my_function(x, y, z):
mini = min(x,y,z)
return mini
a = 78*453
b = 654-877
c = 98765*785
print(my_function(a,b,c))
I'm learning about functions in Python, and I'm wondering how can I return the variable name rather than it's value in this code. I know the variable b (which is assigned to the local variable y) has the minimum value, but how can I print "b" or "y" instead of '-223' based on that?