728x90
[Python Examples] sorted(), sorted(x, reverse)
포스트 난이도: HOO_Intern
# Example Codes
x = (55, 33, 22, 77)
y = ("James", "Amy", "Carl", "Alex")
sort_num = sorted(x)
sort_str = sorted(y)
print(sort_num)
print(sort_str)
# reverse
sort_num_rev = sorted(x, reverse=True)
sort_str_rev = sorted(y, reverse=True)
print(sort_num_rev)
print(sort_str_rev)
[22, 33, 55, 77]
['Alex', 'Amy', 'Carl', 'James']
[77, 55, 33, 22]
['James', 'Carl', 'Amy', 'Alex']
Process finished with exit code 0
# Explain Codes
sorted function을 사용하여 int, string 상관없이 자동 정렬이 가능하다.
reverse를 사용할 경우 자동 reverse sort도 바로 가능하다.
위의 예제에서는 string을 sorting 해줬지만 char도 sorting이 가능하다.
728x90
'Python > Python Examples' 카테고리의 다른 글
[Python Examples] if문 예제 코드(Example of if statement) (0) | 2022.07.30 |
---|---|
[Python Examples] os.walk() (0) | 2022.07.03 |
[Python Examples] divmod()을 사용하여 몫, 나머지 구하기 (0) | 2022.03.15 |
[Python Example Codes] Matplotlib: Horizontal Bar Chart(수평 막대 그래프) 데이터 시각화 #01 (0) | 2021.12.16 |
[Python Example Codes] Matplotlib pyplot: plt.subplots() | x값만 활용한 그래프 생성 (0) | 2021.12.14 |
댓글