# codeup 1451 데이터정렬(small)
n=int(input())
n_list=[]
for i in range(n):
n_list.append(int(input()))
n_list.sort() #오름차순 정렬
for n in n_list:
print(n)
append() 값 추가
오름차순 정렬
sort()
728x90
'Dev. > Algorithm Prac' 카테고리의 다른 글
파이썬 while문 연습예제 (0) | 2022.07.05 |
---|---|
python :: For문과 While문 기초예제 (0) | 2022.07.01 |
CodeUP [Python]:: 6092 이상한 출석 번호 부르기 (0) | 2022.07.01 |
python :: 연산자 연습 문제 (0) | 2022.06.30 |
python :: 리스트 연습 문제 (0) | 2022.06.29 |
댓글