리스트와 비슷하지만 아이템 변경이 불가하다.
선언
조회
함수/기능
슬라이싱 : 튜플에서 원하는 아이템만 추출
for문을 활용한 아이템 조회
for i in range(len(tuple)): tuple[i]
for item1, item2 in tuple: item1, item2
while문을 활용한 아이템 참조
n = 0 while n < len(tuple): tuple[n] n += 1