Language/Python
[Python / 프로그래머스 level 1] 평균 구하기
ej503
2021. 6. 14. 10:33
def solution(arr):
for i in range(len(arr)):
return sum(arr) / len(arr)