Running command lines within your Python script

前端 未结 4 782
予麋鹿
予麋鹿 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:38

    or you can use

    import os
    os.system('your_command')
    

    for example:

    import os
    os.system('notepad')
    

    will launch the notepad with the command line behind.

    hope this helps

提交回复
热议问题