I have two text files that contain 1,096 values (these are features extracted from a neural network layer).
I want to take the first element of the the first text file and subtract it from the first element of the second text file and so on through all the 1,096 decimal values.
I then want to take the sum of these subtractions and store it in a variable for later use.
I am new to Python so I'm unsure which is the best way to access each element - I am aiming for some method similar to the euclidean distance method.