vote up 3 vote down star

Hola,

Is there any way for me to use a string to call a method of a class? Here's an example that will hopefully explain better (using the way I think it should be)

class helloworld():
    def world(self):
        print "Hello World!"

str = "world"
hello = helloworld()

hello.`str`()

Which would output hello world.

Thanks in advance.

flag

Should the output be "hello world" or "Hello World!"? – Buddy Jun 17 at 23:26

4 Answers

vote up 13 vote down check

You can use getattr:

>>> class helloworld:
...     def world(self):
...         print("Hello World!")
... 
>>> m = "world"
>>> hello = helloworld()
>>> getattr(hello, m)()
Hello World!
  • Note that the parens in class helloworld() as in your example are unnecessary, in this case.
  • And, as SilentGhost points out, str is an unfortunate name for a variable.
link|flag
1  
str is a bad choice for a variable name. – SilentGhost Jun 17 at 22:34
vote up 0 vote down

Warning: exec is a dangerous function to use, study it before using it

You can also use the built-in function "exec":

>>> def foo(): print('foo was called');
...
>>> some_string = 'foo';
>>> exec(some_string + '()');
foo was called
>>>
link|flag
3  
The is really not a good idea. exec should be avoided when possible. getattr is made for this problem. – Stephan202 Jun 17 at 22:46
1  
Don't confuse how to do something with whether it's safe or not. exec is indeed a dangerous function to use. However, there are ways to use it safely. In this case, you can pass the "globals" and "locals" context dictionaries in order to run exec in a "sandbox". – shafik23 Jun 17 at 22:52
1  
I've heard awful things about exec(), but this worked perfectly. – Nakedsteve Jun 17 at 22:52
Keep in mind, Sliggy, that exec is indeed dangerous to use. Make sure you fully understand the weapon before handling it. – shafik23 Jun 17 at 22:55
vote up -3 vote down

one way is you can set variables to be equal to functions just like data

def thing1():
    print "stuff"

def thing2():
    print "other stuff"

avariable = thing1
avariable ()
avariable = thing2
avariable ()

And the output you'l get is

stuff
other stuff

Then you can get more complicated and have

somedictionary["world"] = world
somedictionary["anotherfunction"] = anotherfunction

and so on. If you want to automatically compile a modules methods into the dictionary use dir()

link|flag
2  
How can you get the output of thing1 by calling blah? – a_m0d Jun 17 at 22:37
vote up -4 vote down

What you're looking for is exec

class helloworld():
    def world(self):
        print "Hello World!"

str = "world"
hello = helloworld()

completeString = "hello.%s()" % str

exec(completString)
link|flag
that's just plainly wrong – SilentGhost Jun 17 at 22:47
I have never used "exec" before but I think I'll reconsider... Up-modding. – Peter Ericson Jun 18 at 1:21

Your Answer

Get an OpenID
or

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