row=3 col=3 fla=[1]*col flag=[fla]*row print(flag) flag[0][0]=2 print(flag)
a=[[1,2],[3,4]] b=a.copy() b[0][0]=5 print(a) print(b)