Python sorted() 함수 사용해보기
2023. 1. 23. 21:54
프로그래밍 언어/Python
파이썬 리스트를 정렬할 때 sorted() 함수를 사용해서 정렬하곤 하는데 sorted() 함수에 대해서 조금 더 공부해보고 정리해봤다. python sorted() 함수는 아래의 문서를 통해 더 자세히 확인할 수 있었다. https://docs.python.org/ko/3/howto/sorting.html Sorting HOW TO Author, Andrew Dalke and Raymond Hettinger,, Release, 0.1,. Python lists have a built-in list.sort() method that modifies the list in-place. There is also a sorted() built-in function that builds a... docs.pyth..