I have this:
dictionary = { (month, year) : [int, int, int] }
I'd like to get a list of tuples/lists with the ordered data(by month and year):
#example info
list = [(8,2010,2,5,3),(1,2011,6,7,8)...]
I've tried several times but I can't get to a solution.
Thanks for your help.