파이썬(Python) 선택정렬, 삽입정렬, 퀵정렬 1. 선택정렬 1 2 3 4 5 6 7 8 9 10 11 12 13 def select_sort (array): for i in range ( len (array)): min_index = i …