In [1]:
from string import ascii_uppercase

lst = [ascii_uppercase[:11] ] + [ list(range(10))+ [mult(i)] for i in range(10)]

In [ ]: