共计 974 个字符,预计需要花费 3 分钟才能阅读完成。
在 C# 中调用 Python 脚本可以使用 Python 的标准库 Process
来实现。下面是一个简单的示例代码:
using System;
using System.Diagnostics;
class Program
{static void Main(string[] args)
{string pythonExe = @"C:\Python\Python38\python.exe"; // Python 解释器的路径
string script = @"C:\path\to\your\script.py"; // Python 脚本的路径
Process process = new Process();
process.StartInfo.FileName = pythonExe; // 指定 Python 解释器的路径
process.StartInfo.Arguments = script; // 指定要执行的 Python 脚本的路径
process.StartInfo.UseShellExecute = false; // 不使用 Shell 执行
process.StartInfo.RedirectStandardOutput = true; // 重定向标准输出
process.StartInfo.CreateNoWindow = true; // 不创建新窗口
process.Start(); // 启动进程
string output = process.StandardOutput.ReadToEnd(); // 读取标准输出
process.WaitForExit(); // 等待进程执行完毕
int exitCode = process.ExitCode; // 获取进程的退出码
Console.WriteLine("Output:");
Console.WriteLine(output);
Console.WriteLine("Exit Code: {0}", exitCode);
Console.ReadLine();}
}
以上代码中,需要替换 pythonExe
为 Python 解释器的路径,script
为要执行的 Python 脚本的路径。然后使用 Process
启动 Python 进程,并将标准输出重定向到 C# 中获取。
注意:在使用 Process
调用 Python 脚本之前,请确保已经安装了 Python 解释器,并将其添加到系统的环境变量中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完