본문 바로가기

Programming/Python

[Python] 특정 값 기준으로 정렬하기

list.sort(key = lambda x : x[-1])


key 값에 lambda 을 이용한다.