the version of python is 3.7.3 I want make an array of lists which none of the lengths of them are not equal. I tried
l= [[]] * 38
l[25].append['QQ']
it will show [['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA'], ['AA']]
it is the same for l= [['']] * 38
I want to know why I can't use the append function.