so I have txt file which has the following 2 values 0.8812395E-5.1.000E+01 but when printing on python it says that the list's two components are [0.8812395E-5.1.000E+01, ''] basically instead of considering the two values separately it takes the two as one, I need to extract the two numbers.
pressure = open('pressure.txt')
pressure = pressure.read()
line = pressure.split('\n')
print(len(line))
print(line)
and the result
2
['.8812395E-15.1000000E+01', '']
Process finished with exit code 0