- 튜플은 데이터 변형이 안되는 자료구조 - 튜플 자체를 재할당 하는 건 가능 tup=(10,20,30) //튜플 리스트로 변환1 list_1=list(tup) //튜플 리스트로 변환2 list_2=[x for x in tup] //튜플 리스트로 변환3 list_3=[] for x in tup: list_3.apeend(x) 딕셔너리: - 영어로는 사전 - 키와 값의 쌍으로 이루어진 데이터의 모음 student= { 'student_no':'20231234', 'major':'english', 'grade':1 } print(student["student_no"] //키값을 넣어줌 딕셔너리 데이터 조작: student= { 'student_no':'20231234', 'major':'english', '..