프로그래머스의 코딩테스트 연습문제 중 평균 구하기 문제의 정답입니다.

Python 코드

def solution(arr):
    return sum(arr)/len(arr)



감사합니다!