i am using a c# windows forum and running a python file using iron python, the file is running but i would like to be able to use the output on c#
private void button1_Click(object sender, EventArgs e)
{
ScriptEngine engine = Python.CreateEngine();
engine.ExecuteFile(@"hi_test.py");
}
python
print("hi")