"길이 순 정렬"의 두 판 사이의 차이

(새 문서: ==Python== 분류: Python <source lang='python'> a = ['dddd','a','bb','ccc'] print( sorted(a, key=len) ) # ['a', 'bb', 'ccc', 'dddd'] </source> ==같이 보기== * sort() * [...)
 
2번째 줄: 2번째 줄:
[[분류: Python]]
[[분류: Python]]
<source lang='python'>
<source lang='python'>
a = ['dddd','a','bb','ccc']
a = ['world','el','h','llo']
print( sorted(a, key=len) )
print( sorted(a, key=len) )
# ['a', 'bb', 'ccc', 'dddd']
# ['h', 'el', 'llo', 'world']
</source>
</source>



2019년 5월 6일 (월) 02:39 판

1 Python

a = ['world','el','h','llo']
print( sorted(a, key=len) )
# ['h', 'el', 'llo', 'world']

2 같이 보기

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