how do I make a python code that runs a .bat (batch) file, and the .bat file
calls another python with arguments?
I know that if you want to call a python file using .bat you need to write:
C:\python27\python.exe D:\XXX\XXX\XXX\XXX.py %*
what about arguments? I need this D:\XXX\XXX\XXX\XXX.py file to get args... Thanks!