Good evening I would like to know how I can execute an MS-DOS command from python.
I need to open WINWORD.EXE and this is the code I use
import os
r = os.system("C:/Program Files (x86)/Microsoft Office/root/Office16/")
T = r + os.system("/WINWORD.EXE")
but it does not work