먼저 tuple은 immutable 이기 때문에 데이터의 변경이 불가능 합니다. 그러므로 변수내 값을 더이상 변경하지 않고 사용할 때 효과적으로 사용할 수 있습니다. >> namedtuple의 값은 변경이 가능! 기본 tuple의 경우 index로 데이터가 접근 가능하지만 namedtuple의 경우 key를 이용해서 데이터의 접근이 가능합니다. 기본 tuple 예시 # tuple 선언 tuple_1 = ('a','b','c',1,2,3) # index를 통한 데이터 접근 print(tuple[1]) >> b print(tuple[3]) >> 1 namedtuple 예시 # collections으로 부터 namedtuple import from collections import namedtuple # na..