In my python program, I have to call a function like this one:
driver_name.project.paired_config_L1_M_10g()
What function I call depends on the value that I have stored in three variables, namely:
varA == M
varB == L1
varC = 10g
varA, varB, and varC can have about 20 different values each, and I don't want to write a function call for each one of them (Albeit the actual function definition exists.) Typically I want to function call to be:
driver_name.project.paired_config_$varA_$varB_$varC()
But this does not seem to work. Suggestions?