I have a excel having data like below:
Data.xlsx
Method_Name | Argument_01 | Argument _02
Func1 | val1 | val2
Func2 | val3 | val4
Now my question is:
How to read the function name and arguments from Data.xlsx
file and invoke the method Func1
and pass the arguments (val1,val2)
using python?
If provide me a code on that using python it would be very very helpful for me.
Thanks.