The arithmetic mean

Report a typo

Imagine you wrote five tests on geometry, and you had five different grades in each one. There are five grades (integers) in the input, one per line. Use all of them to make a list (dataset), then print their arithmetic mean of your test results.

Sample Input 1:

1
2
3
3
5

Sample Output 1:

2.8
Write a program in Python 3
import statistics

a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
___

Create a free account to access the full topic