I have a str object for example: menu='install'. I want to run install method from this string. For example when I call menu(some, arguments) it will call install(some, arguments). Is there any way to do that ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If it's in a class, you can use getattr:
or if it's a function:
|
|||||||||||||
|
|
You can use a dictionary too.
|
|||||||||
|
|
Why cant we just use eval()?
New method
And then you call the method as below
This gives the output as
|
|||||
|