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.