I wonder what's the most efficient way to convert a very large dictionary to matrix, for example:
{'0': [1, 2, 3....99999999, 100000000], '1': [1, 2, 3....99999999, 100000000], '2': [1, 2, 3....99999999, 100000000], '3': [1, 2, 3....99999999, 100000000]......'999': [1, 2, 3....99999999, 100000000], '1000': [1, 2, 3....99999999, 100000000]}
to this
list([[1, 1, 1, 1.....1, 1, 1, 1, 1], [2, 2, 2, 2....2, 2, 2, 2, 2], ..... [99999999, 99999999, 99999999, 99999999....99999999, 99999999, 99999999, 99999999], [100000000, 100000000, 100000000, 100000000...100000000, 100000000, 100000000, 100000000]])