Conversation
Notices
-
raymondh (http://twitter.com/raymondh)'s status on Tuesday, 22-Jul-2014 07:34:54 CEST raymondh #python tip: Find differences between successive data elements: >>> data = [10, 15, 20, 24, 30] >>> map(sub, data[1:], data) [5, 5, 4, 6] - Jens Kubieziel repeated this.