I have the following problem:
I want to run from the shell the following:
python test.py -f fname.csv -s 0.0 -c 0.0 > outS0.0C0.0.txt
The issue is that I want s and c to loop over all values from 0.0 to 1.0 for both values and store the results to files of the above format. Also, if it is possible, to move respectively the output files to subfolders, like: in .\S0.0 all out* files with s starting with outS0.0* and so on. So the result will be a subfolder set of respective files.
Thank you!