I\'m running Python 3.2 on Win XP. I run a python script thru a batch file via this:
C:\\Python32\\python.exe test.py %1
%1 is an a
%1
your_script.bat:
set VAR_1=this set VAR_2=that python your_script.py %1 %VAR_1% %VAR_2%