Running command lines within your Python script

前端 未结 4 781
予麋鹿
予麋鹿 2021-02-05 08:02

So I have a bunch of aliases and Command Line prompt programs, and my main program works by inputting b into the cmd.exe, followed by some filepath names and what not. How would

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-05 08:48

    You should use the subprocess module. In particular, subprocess.call will run command line programs for you.

提交回复
热议问题