"S10 Day 0: Weighted Mean"의 두 판 사이의 차이

(새 문서: ==Python== 분류: 10 Days of Statistics)
 
1번째 줄: 1번째 줄:
==Python==
==Python==
<source lang='python'>
N = int(input())
X = list(map(int, input().split()))
W = list(map(int, input().split()))
sum_X = sum([a*b for a,b in zip(X,W)])
print(round((sum_X/sum(W)),1))
# 32.0
</source>


[[분류: 10 Days of Statistics]]
[[분류: 10 Days of Statistics]]

2018년 7월 28일 (토) 19:17 판

Python

N = int(input())
X = list(map(int, input().split()))
W = list(map(int, input().split()))
sum_X = sum([a*b for a,b in zip(X,W)])
print(round((sum_X/sum(W)),1))
# 32.0
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}