public void Add_Call_Method_Multi()
        {
            Python_Script script = new Python_Script("calc_interface.py");
            string        res    = script.Call_Function("calc_pure_string", "+ - * /  3 2  10 6 -2 ", true);

            Assert.AreEqual(res, "7.0");
        }