public void Add_Run_Multi()
        {
            Python_Script script = new Python_Script("calc_interface.py");
            string        res    = script.Run("test_calc_pure", "+ - * /  3 2  10 6 -2 ");

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