1. List [ a, b, c ...... ] 순서 ⭕️ , 중복 ⭕️ , 삭제 ⭕️ , 수정 ⭕️ #list 선언 subway = [10, 20, 30] subway = ["min", "moon", "young"] #다양한 자료형 함께 사용가능! mix_list=["cho", 11, True] #해당 value의 index 반환 print(subway.index("moon")) #list에 추가 (맨 뒤로 추가됨) subway.append("haha") print(subway) #추가될 위치 지정, 그 위치에 추가되고 뒤로 밀림 subway.insert(1, "hyung") print(subway) #remove : pop() 맨뒤부터 빠짐 print(subway.pop()) print(subway)..