From list m
:
m = [[' # ', ' # ', ' # ', ' # ', ' # ', ' # '], [' # ', ' # ', ' # ', ' # ', ' # ', ' # '], [' # ', ' # ', ' # ', ' # ', ' # ', ' # '], [' # ', ' # ', ' # ', ' # ', ' # ', ' # '], [' # ', ' # ', ' # ', ' # ', ' # ', ' # '], [' # ', ' # ', ' # ', ' # ', ' # ', ' # ']]
When doing mb = m[:]
or mb = list(m)
I would clone the m
initial, right or not? But by doing mb[0][0] = 99999999
, for example, the m
list is also modified.
What do I not see or do not know about?