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
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