"Python sorted()"의 두 판 사이의 차이

 
15번째 줄: 15번째 줄:


[[분류: Python 리스트]]
[[분류: Python 리스트]]
[[분류: Python 빌트인 함수]]

2017년 12월 10일 (일) 18:36 기준 최신판

1 개요[ | ]

Python sorted()
파이썬 sorted()
lst = ['Banana', 'Orange', 'Apple', 'Mango']

print(list( sorted(lst) ))
# ['Apple', 'Banana', 'Mango', 'Orange']

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}