16. python_016.py(배열 정렬, 삭제, 갯수세기) |
|||||
---|---|---|---|---|---|
작성자 | 수안보중 | 등록일 | 19.11.06 | 조회수 | 42 |
#python_016.py(배열 정렬, 삭제, 갯수세기) colors = ['red', 'orange', 'yellow', 'green', 'yellow'] print(colors) colors.sort() # 항목 정렬하기 print(colors) colors.reverse() # 역순 정렬하기 print(colors) print() print(colors.pop()) # 항목 가져오기 print(colors) colors.remove('red') # 항목 삭제하기 print(colors) print(colors.count('yellow')) # 항목 개수 세기 print(colors.count('red')) <결과> ['red', 'orange', 'yellow', 'green', 'yellow'] ['green', 'orange', 'red', 'yellow', 'yellow'] ['yellow', 'yellow', 'red', 'orange', 'green'] green ['yellow', 'yellow', 'red', 'orange'] ['yellow', 'yellow', 'orange'] 2 0
|
이전글 | 17. python_017.py(배열 길이, 최대값, 최소값, 합계, 소트, 문자열 분리) |
---|---|
다음글 | 15. python_015.py(배열 위치 가져오기, 데이터 항목 추가하기) |