import numpy as npfrom math import sqrt # 빈 리스트(scores)를 선언scores = [] # 난수 (0 max_score: # 리스트에서 현재 최댓값보다 더 큰 수를 찾은 경우 max_score = score if score < min_score: # 리스트에서 현재 최솟값보다 더 작은 수를 찾은 경우 min_score = score print(f'max_score: {max_score}')print(f'max_score2: {max(scores)}') # max 함수를 이용한 최대값print(f'min_score: {min_score}')print(f'max_score2: {min(scores)}') # min 함수를 이용한 최대값 실행 결과scores=[27, 4..