1. index로 리스트 내 특정요소 위치 찾기 1 2 3 4 listT = ['A', 'B', 'C', 'D', 'E'] listT.index('B') # 1 cs 2. insert로 리스트 내 특정 위치에 특정 값 넣기 1 2 3 listT.insert(6, 'F') # ['A', 'B', 'C', 'D', 'E', 'F'] cs 3. extend로 리스트 확장 1 2 3 4 listV = [2,2,2] listT.extend(listV) # ['A', 'B', 'C', 'D', 'E', 'F', 2, 2, 2] cs 4. 문자열 리스트로 만들기 1 2 3 char = list('helloworld') # ['h', 'e', 'l', 'l', 'o', 'w', 'o', 'r', 'l', 'd'] cs..