https://programmers.co.kr/learn/courses/30/lessons/12944?language=python3
def solution(arr): answer = 0 answer=sum(arr)/len(arr) return answer