我有一个应用程序,它同时支持GUI和CLI。是否可以使用python使用此CLI命令的任何选项,以便我可以自动化该应用程序的过程集(即,只需单击一下即可替换工作集)
答案 0 :(得分:1)
from subprocess import check_output
# check_output returns the output of the command
# note: date is a unix command, try something else if on windows
result = check_output('date', encoding='utf8')
print(result)