I have two files
test_def.py
def hi_test(a):
return a
test_run.py
from test_def import hi_test
a = 'hi'
b = 'test'
c = 'lion'
run = "{0}_{1}".format(a, b)
run1 = run(c)
print run1
it is printing hi_test(lion) instead of executing / calling def function. can anyone help on this to execute the def function ?