如何在 C# 中 return python 脚本的 "return value"?
How to return the "return value" of a python script in C#?
我想在 C# 中 运行 一个 python 脚本,然后想在 C# 中 return python 脚本的“return 值” .
我的 python 脚本:
def myfunc():
print("aaa")
return "abc"
if __name__ == "__main__":
myfunc()
我的 C# 文件:
void Main()
{
var result = run_cmd();
Console.WriteLine(result);
}
private string run_cmd()
{
string fileName = @"C:\Users\NCH-Lap10\Desktop\return_one.py";
string python = @"C:\Users\NCH-Lap10\AppData\Local\Programs\Python\Python37-32\python.exe";
Process psi = new Process();
psi.StartInfo = new ProcessStartInfo(python, fileName)
{
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = false
};
psi.Start();
string output = psi.StandardOutput.ReadToEnd();
Console.WriteLine(output);
psi.WaitForExit();
int result = psi.ExitCode;
return output;
}
我可以 return 打印消息“aaa”,但我需要“abc”。我以为 psi.ExitCode 会给我所需的输出,但它不起作用。
您的脚本 returns 的值 myfunc
仅在内部。
如果要导出值,可以在main-if后面写print(myfunc())
。
另请查看此 answer,因为它讨论了各种方法和概念
我想在 C# 中 运行 一个 python 脚本,然后想在 C# 中 return python 脚本的“return 值” .
我的 python 脚本:
def myfunc():
print("aaa")
return "abc"
if __name__ == "__main__":
myfunc()
我的 C# 文件:
void Main()
{
var result = run_cmd();
Console.WriteLine(result);
}
private string run_cmd()
{
string fileName = @"C:\Users\NCH-Lap10\Desktop\return_one.py";
string python = @"C:\Users\NCH-Lap10\AppData\Local\Programs\Python\Python37-32\python.exe";
Process psi = new Process();
psi.StartInfo = new ProcessStartInfo(python, fileName)
{
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = false
};
psi.Start();
string output = psi.StandardOutput.ReadToEnd();
Console.WriteLine(output);
psi.WaitForExit();
int result = psi.ExitCode;
return output;
}
我可以 return 打印消息“aaa”,但我需要“abc”。我以为 psi.ExitCode 会给我所需的输出,但它不起作用。
您的脚本 returns 的值 myfunc
仅在内部。
如果要导出值,可以在main-if后面写print(myfunc())
。
另请查看此 answer,因为它讨论了各种方法和概念