For simplicity this is a stripped down version of what I want to do:
def foo(a):
# I want to print the value of the variable
# the name of which is contained in a
I know how to do this in PHP:
function foo($a) {
echo $$a;
}
global $string = "blah"; // might not need to be global but that's irrelevant
foo("string"); // prints "blah"
Any way to do this?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
If it’s a global variable, then you can do:
>>> a = 5 >>> globals()['a'] 5
A note about the various “eval” solutions: you should be careful with eval, especially if the string you’re evaluating comes from a potentially untrusted source — otherwise, you might end up deleting the entire contents of your disk or something like that if you’re given a malicious string.
(If it’s not global, then you’ll need access to whatever namespace it’s defined in. If you don’t have that, there’s no way you’ll be able to access it.)
Method 2
Edward Loper’s answer only works if the variable is in the current module. To get a value in another module, you can use getattr:
import other print getattr(other, "name_of_variable")
https://docs.python.org/3/library/functions.html#getattr
Method 3
Assuming that you know the string is safe to evaluate, then eval will give the value of the variable in the current context.
>>> string = "blah" >>> string 'blah' >>> x = "string" >>> eval(x) 'blah'
Method 4
>>> x=5
>>> print eval('x')
5
tada!
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0