From a list, M:
M = [[1, 2, 3],
     [4, 5, 6],
     [7, 8, 9]]
I want to create a new list, L, with all items doubled.
So far, I have tried various combinations of iteration, comprehensions and lambda expressions, all to no avail.
What would be the easiest/fastest way?
 
     
     
    