Hi
I am trying to process a large text file. I would like to include parameters at some places in the file. Run it through python and write out the "processed" file with the values of the parameters in the new file.
Example: original file:
a =1
b=2
c= param1
d=4
Run python with param1=3: Gives new file with
a=1
b=2
c=3
d=4
---
Is this possible? The original text file will be around 100Mb and have maybe 100 parameters.
Any ideas how to do this in python?
Best regards
Joakim