평균구하기

YU NA Joe·2022년 3월 14일
0
def solution(arr):    
    answer = sum(arr) / len(arr)
    return answer
    
# 통과! 

0개의 댓글