문제풀이/프로그래머스
[프로그래머스][Lv1] - 평균 구하기 (Python)
얄루몬
2021. 11. 17. 16:19
def solution(arr):
answer = 0
answer = sum(arr)/len(arr)
return answer