[백준] 수 정렬하기 : 2750번 - Python
https://www.acmicpc.net/problem/2750 2750번: 수 정렬하기 첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000)이 주어진다. 둘째 줄부터 N개의 줄에는 숫자가 주어진다. 이 수는 절댓값이 1,000보다 작거나 같은 정수이다. 수는 중복되지 않는다. www.acmicpc.net 문제를 풀면서 몰랐던 개념 [Python] 리스트 오름차순으로 정렬하기 -> sorted 함수를 사용해서 정렬! alist = [4, 2, 1, 3, 5] alist = sorted(alist, reverse = False) # 오름차순 정렬 print(alist) >> [1, 2, 3, 4, 5] alist = sorted(alist, reverse = True) # 내림차순 정렬 print(alis..
CodeUp 기초 100제 정리
#6020 #one2ye code a,b = input().split('-') print(a,b,sep="") #20s code num = input() re_num = num.replace("-","") print(re_num) #6023 #one2ye code s = input().split(":") print(s[1]) #20s code h,m,s = input().split(':') print(m) #6042 #one2ye code a = float(input()) print(format(a, ".2f")) #20s code a = float(input()) print(round(a,2)) #6066 a,b,c = input().split() a = int(a) b = int(b) c = int(..