[Python] 2개의 Dictionary 합치는 방법
중복된 Key 값이 없을 경우 dict_1 = {'A' : 1, 'B' : 2, 'C' : 3, 'D' : 4} dict_2 = {'E' : 5, 'F' : 6, 'G' : 7, 'H' : 8} result_dict = dict_1 result_dict.update(dict_2) >>> result_dict {'A': 1, 'B': 2, 'C': 3, 'D': 4, 'E': 5, 'F': 6, 'G': 7, 'H': 8} 중복된 Key 값이 있을 경우 중복된 Key값이 있을 때 update를 수행하면, 업데이트할 대상으로 덮어쓰기 발생 dict_1 = {'A' : 1, 'B' : 2, 'C' : 3, 'D' : 4} dict_2 = {'C' : 5, 'D' : 6, 'E' : 7, 'F' : 8} 따라서..
Python 알고리즘 Quick books
Bubble Sort Algorithm arr = [7, 3, 9, 2, 0, 4, 8, 1, 6, 5] def bubbleSort(theSeq): n = len(theSeq) for i in range(n - 1): for j in range(n - 1 - i): if theSeq[j] > theSeq[j + 1]: temp = theSeq[j] theSeq[j] = the Seq[j + 1] theSeq[j + 1] = temp return theSeq print(bubbleSort(arr)) Printing Prime Numbers #printing prime numbers in a range lower = 100 upper = 200 for num in range(lower, upper+1): i..