>>> M1
['month:12;year:2006', 'month:7;year:2010']
>>> M2
['month:5;year:2006', 'month:3;year:2010']
>>> M3
['year:2006'; 'month:4;year:2010']
I have 3 list item M1, M2, M3
M1[0] is the Start date
M2[0] is the End date
is it possible to convert the list this way and perform computations
M1 = 12/2006, 7/2010
M2 = 5/2006, 3/2010
M3 = 0/2006, 4/2010
What i want is to calculate the difference between them in months like,
M1Diff = 43 months
M2Diff = 52 months
M3Diff = 51 months