I have multiple arrays in python in the following form
array1=['8', '-9.7521970601311E-5', '1237.16', '1265.50"', 'spec2', '=', '"2', '59', '0', '9810.07016902']
I want to select the data point that ends with E-some number. In the case of array1 that data point is -9.7521970601311E-5.
The arrays are not symmetric and the data points with the number ending in E are quite random. The length of the arrays are however the same. I wanted to create a loop where it would look through each array to find out the number ending with E and store them in a separate array. How would I go about doing that? I am quite new to python and I have no idea how to even approach this problem.