I am running a script by typing
xxx.py param.parxxx.pyis the python script andparam.paris the text file where I am defining parameters for the script.In
param.parI have:
x=1
y=0.1
z=10
So, after modifying those numbers I am saving
param.parand running the script.I need to change
xfrom 1-10 (step 1) andyfrom 0.1-1 (step 0.1). Instead of doing all this manually and saving every timeparam.parfile and then running script is there any option for how this can be automatized in python.Any suggestions or examples are welcome.
Thanks.