Hello
I have a .py file. I am creating a .bat file which when clicked runs the python script & saves the output as a text file in the same directory.
I gave this inside the batch file
%CD%\App1.py > %CD%\op.txt
but I am not able to see the output nor the saved text file.
So how do I go about doing this?
Thanks