SMALL 평균값 구하기1 [SW Expert Academy] 평균값 구하기 *문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QRnJqA5cDFAUq&categoryId=AV5QRnJqA5cDFAUq&categoryType=CODE T = int(input()) for test_case in range(1, T + 1): result = list(map(int, input().split(" "))) print("#{} {}".format(test_case, round(sum(result)/len(result))) 2021. 1. 20. 이전 1 다음 LIST