Sorry for my second newbie question....well now I am dealing with a text file that has the following line:
1e+12
Anyways, so I want to go into the file (named intens.txt) and replace the "e+" so that the line will look like this : 1*(10**12) .....The line will be changing so it's never going to be the same exponential, but it's always in the same format. How do i make it so i can change it to the format that python takes so i can use it for mathematical operations? So pretty much I want to ALWAYS replace "e+" with " *(10** " and add a closing parenthesis ")" at the end of the line. Once it is modified, i just want to go in the file and read the new modified line and store it back in python on a variable.