수안보중학교 로고이미지

RSS 페이스북 공유하기 트위터 공유하기 카카오톡 공유하기 카카오스토리 공유하기 네이버밴드 공유하기 프린트하기
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(배열 연습)