Small Grey Outline Pointer CodeUp [Python] 1451 : 데이터 정렬 (small)
본문 바로가기
Dev./Algorithm Prac

CodeUp [Python] 1451 : 데이터 정렬 (small)

by sso. 2022. 7. 1.
# 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

댓글