I have a python file sample.py with two functions. So here I want to call the specific python function from tcl script, also I want to passing an argument to that python function. Could you please share your ideas. I don't know whether it is possible. Your answers will be more helpful for us.
sample.py
def f1(a,b,c):
x = a + b + c
retun x
def f2(a,b):
x = a + b
return x