Notice
Recent Posts
Recent Comments
-
[파이썬] 리스트 원소 길이순으로 정렬하기 본문
반응형
words = ["apple", "banana", "kiwi", "grape"]
words.sort(key=len)
print(words)
#실행 결과
['kiwi', 'apple', 'grape', 'banana']
반응형
'Python' 카테고리의 다른 글
[Python] 입력 개수 모를 때 처리 방법 (0) | 2023.10.08 |
---|---|
[파이썬] 리스트간 뺄셈 구현 (리스트 차집합) (0) | 2023.04.29 |
[Python] print 문의 옵션 (sep, end, format, escape) (0) | 2022.05.11 |
[Python] 리스트 컴프리헨션 (0) | 2022.05.10 |
[Python] dictionary 에서 가장 큰 value에 대한 key 값 찾기 (0) | 2022.05.09 |
Comments