C#调用带参数的python脚本

Posted 南风小斯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#调用带参数的python脚本相关的知识,希望对你有一定的参考价值。

问题描述:使用C#调用下面的带参数的用python写的方法,并且想要获取返回值。

def Quadratic_Equations(a,b,c):
    D=b**2-4*a*c
    ans=[]
    ans.append((-b+math.sqrt(D))/(2*a))
    ans.append((-b-math.sqrt(D))/(2*a))
    return ans

C#代码如下:

class Program
    {
        static void Main(string[] args)
        {
            string name = "CallPythonExam.py";
            List<string> param = new List<string>() { "3", "5", "1" };
            RunPythonScript(name, param);
        }
        
        static void RunPythonScript(string name, List<string> args)
        {
            Process p = new Process();
            // .py文件的绝对路径
            string path = @"D:PythonProgramsVelocityProfileVelocityProfile" + name;
            string arguments = path;
            // 添加参数
            foreach (var item in args)
                arguments += " " + item;
            // python安装路径
            p.StartInfo.FileName = @"C:Program Files (x86)Microsoft Visual StudioSharedPython36_64python.exe";
            
            // 下面这些是我直接从网上抄下来的.......
            p.StartInfo.Arguments = arguments;
            // 不启用shell启动进程
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardError = true;
            // 不创建新窗口
            p.StartInfo.CreateNoWindow = true;
            p.Start();
            StreamReader sr = p.StandardOutput;
            while (!sr.EndOfStream)
                Console.WriteLine(sr.ReadLine());
            Console.ReadLine();
            p.WaitForExit();
        }
    }

python代码如下:

import math
import sys

def Quadratic_Equations(stra,strb,strc):
    a=float(stra)
    b=float(strb)
    c=float(strc)
    D=b**2-4*a*c
    ans=[]
    ans.append((-b+math.sqrt(D))/(2*a))
    ans.append((-b-math.sqrt(D))/(2*a))
    print(ans[0])
    print(ans[1])
    #return str(ans[0])

Quadratic_Equations(sys.argv[1],sys.argv[2],sys.argv[3])

这样就可以在屏幕上输出方程的解。

https://github.com/Larissa1990/use-C-to-call-.py-file

以上是关于C#调用带参数的python脚本的主要内容,如果未能解决你的问题,请参考以下文章

python 如何调用带参数的shell脚本

python脚本中调用执行另一个带参数python脚本的问题

PHP带参数传值调用python脚本

C#怎么启动带参数的执行文件

gnuplot 带参数脚本与python脚本结合

C# 调用外部exe,且带参数