[python] list 복사(copy)
list를 복사할 때에는 copy함수를 이용하여 간단하게 복사가 가능하다. test_1=[[0,0,0],[0,1,0]] test_2=test_1.copy() print(test_2) 하지만 복사를 한 test_2에 있는 값들을 건들 경우, test_1에 있는 값들까지 변경된다. test_1=[[0,0,0],[0,1,0]] test_2=test_1.copy() print("단순 copy", test_2) print() for i in range(len(test_2)): for j in range(len(test_2[0])): test_2[i][j]+=1 print("test_1은",test_1) print("test_2는",test_2) test_2=test_1.copy() print("copy 후 tes..
2021. 1. 19.