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.
Statistics module
The arithmetic mean
Report a typo
Sample Input 1:
1
2
3
3
5Sample Output 1:
2.8Write a program in Python 3
import statistics
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.