Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there a way to know, during run-time, a variable's name (from the code) ? or do var names forgotten during compilation (byte-code or not) ?

e.g.

>>>  vari = 15
>>>  print vari.~~name~~()
'vari'

note: i'm talking about plain data-type variables (int, str, list...)

share|improve this question
4  
Don't you have to type the variable name to get the name of it? – Colin Burnett May 31 '09 at 20:57
Yeah, well, it's been 3 years ago, and i don't remember why this question made sense. But woa! it's extremely popular, so there's something about it. – Berry Tsakala Jan 21 at 16:28

6 Answers

up vote 22 down vote accepted

Variable names don't get forgotten, you can access variables (and look which variables you have) by introspection, e.g.

>>> i = 1
>>> locals()["i"]
1

However, because there are no pointers in Python, there's no way to reference a variable without actually writing its name. So if you wanted to print a variable name and its value, you could go via locals() or a similar function. ([i] becomes [1] and there's no way to retrieve the information that the 1 actually came from i.)

share|improve this answer
this solves my case. then i make reverse lookup on their values, and find their names. thanks. – Berry Tsakala May 31 '09 at 21:11
5  
The hard part about this is that if you only have i' then it is impossible to find it's name in locals(). Consider 'i=1; j=1;'. After this 'locals()["i"] is locals()["j"]'. If all that you have is i' then looping through locals() will result in finding either i' or j' as the name. – D.Shawley Jun 1 '09 at 2:10
1  
D. probably intended to say "If all that you have is 1 [...]" – akaihola Aug 19 '09 at 5:00

Variable names persist in the compiled code (that's how e.g. the dir built-in can work), but the mapping that's there goes from name to value, not vice versa. So if there are several variables all worth, for example, 23, there's no way to tell them from each other base only on the value 23 .

share|improve this answer

This will work for simple data types (str, int, float, list etc.)

def my_print(var_str) :
    print var_str+':', globals()[var_str]
share|improve this answer

I tried the following link from the post above with no success: Googling returned this one.

http://pythonic.pocoo.org/2009/5/30/finding-objects-names

share|improve this answer
Except now that I've upvoted this one, it's not necessarily "the post above": we're talking about @piquadrat's answer. – ptomato Feb 10 '11 at 9:36

Here is a function I use to print the value of variables, it works for local as well as globals:

import sys
def print_var(var_name):
    calling_frame = sys._getframe().f_back
    var_val = calling_frame.f_locals.get(var_name, calling_frame.f_globals.get(var_name, None))
    print (var_name+':', str(var_val))

So the following code:

global_var = 123
def some_func():
    local_var = 456
    print_var("global_var")
    print_var("local_var")
    print_var("some_func")

some_func()

produces:

global_var: 123
local_var: 456
some_func: <function some_func at 0x10065b488>
share|improve this answer

Just yesterday I saw a blog post with working code that does just this. Here's the link:

http://pyside.blogspot.com/2009/05/finding-objects-names.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.