15. python_015.py(배열 위치 가져오기, 데이터 항목 추가하기) |
|||||
---|---|---|---|---|---|
작성자 | 수안보중 | 등록일 | 19.11.06 | 조회수 | 43 |
#python_015.py(배열 위치 가져오기, 데이터 항목 추가하기) colors = ['red', 'orange', 'yellow'] print(colors) print('red의 위치:', colors.index('red')) # 위치 가져오기 print('orange의 위치:', colors.index('orange')) print() colors.append('purple') # 항목 추가하기1 print(colors) colors.insert(3, 'green') # 항목 추가하기2 print(colors) colors.extend(['black', 'white']) # 항목 추가하기3 print(colors) <결과> ['red', 'orange', 'yellow'] red의 위치: 0 orange의 위치: 1 ['red', 'orange', 'yellow', 'purple'] ['red', 'orange', 'yellow', 'green', 'purple'] ['red', 'orange', 'yellow', 'green', 'purple', 'black', 'white']
|
이전글 | 16. python_016.py(배열 정렬, 삭제, 갯수세기) |
---|---|
다음글 | 14. python_014.py(배열 연습) |