Is it possible to use batch scripts in a GUI made with Python?
I was wondering if it was possible to write a GUI in python, and then somewhere in the python script, insert a script switch to temporarily change the language to accomo开发者_StackOverflow社区date for the batch snippet.
I know this can be done in html and vbscript but what about Python?
You can control other processes, written with any language, including bash using the subprocess module.
The subprocess module is the most powerful and complete method for executing other processes. However, there's also a very simple method using the os module: os.system(command)
runs command
just as if you were to type it into a command line.
精彩评论