I am new to python. I was wondering how I could diff the two logcat timestamp intervals and the x and y coordinates from the below logcat msg.
I have a file with the following msg from the logcat where they are represented as follows
Date Time(HH:MM::SS:MS) ACTION_TYPE, (X,Y)
05-03 12:53:15.251 ACTION_MOVE, (596.00, 841.00)
05-03 12:53:15.268 ACTION_MOVE, (599.00, 847.00)
I would like to get the output as in the csv file
timestampdiff(millsec), x_change,y_change
17,3.00,6.00