使用C#中的输入执行python文件

时间:2019-07-18 09:10:01

标签: c# python python-3.x command

我想用c#执行我的python文件。 我的python文件是

    challenge = get_challenge()
    if challenge is True:
        action = input("Send Email Or Sms")
        if action == "Email":
            send_email()
        elif action == "Sms":
            send_sms()
    else:
        username = input("Enter Username")
        save_username()

我应该在c#中做什么?

0 个答案:

没有答案