I would like to populate a list where each position is a list.
lista = [[], [], []]
I have an input: 44 45 49 70 27 73 92 97 95
I would like to list the numbers so that the index is mod of each number by 13.
Ex: 44% 13 = 5
27% 13 = 1
lista = [[ ],[27,92],[ ],[ ],[95],[44,70],[45,97],[ ],[73],[ ],[49],[ ],[ ]]
0 1 2 3 4 5 6 7 8 9 10 11 12
but my problem 'and insert in the internal list, since every time I insert, all internal lists are of the same value.
ex: lista = [[1,2],[1,2]]
NOTE: the input can change as soon as the internal list n has a defined size