Programming/프로그래머스
[프로그래머스] 평균 구하기
pental
2020. 10. 9. 00:51
def solution(arr):
temp = 0
num = len(arr)
for i in arr :
temp += i
return temp / num