a = [0, 0, 0, 0, 0] b = a a is b
a = [0, 0, 0, 0, 0] b = a.copy() a is b # 다른 객체여서 결과 False a == b # 모든 요소가 같아서 결과 True