Well guys, I created a dict, and divided it using the function:
listOfDicts = [{k:v for k,v in dictionary.items() if k%10==i} for i in range(10)]
From that, I got 10 sublists:
listOfDicts[0 a 9]
listOfDict[0]: {0: 0, 10: 5, 20: 10, 30: 15, 40: 20, 50: 25, 60: 30, 70: 35, 80: 40, 90: 45}
But what if I want to divide the sublists into equal sizes (in the case size = 3) and add in a single dict:
listOfDict[0]: {{0: 0, 10: 5, 20: 10}, {30: 15, 40: 20, 50: 25}, {60: 30, 70: 35, 80: 40}, {90: 45}}