Pour simplifier, il s'agit d'une version simplifiée de ce que je veux faire :
def foo(a):
# I want to print the value of the variable
# the name of which is contained in a
Je sais comment faire cela en PHP :
function foo($a) {
echo $$a;
}
global $string = "blah"; // might not need to be global but that's irrelevant
foo("string"); // prints "blah"
Y a-t-il un moyen de le faire ?