자료형 및 연산자
수치 int, long, float, complex등 문자 str 리스트 값의 나열이다. 순서가 존재하며, 여러 종류의 값을 담을 수 있다 0부터 시작하는 인덱스가 있으며, 슬라이싱도 가능하다. // 리스트 생성 colors = ['red', 'green', 'gold'] // 리스트 항목 추가 colors.append('blue') // 중간에 항목 삽입 colors.insert(1, 'black') // 다중 삽입 colors.extend(['white', 'gray']) // 항목 추가 colors += ['red'] // 항목 위치 찾기 colors.index('red') colors.index('red',1) // 시작점 추가 // 원소 갯수 colors.count('red') // 맨 마지막 ..