You found a very interesting program on the Internet. It is a randomizer! You decided to test it by running it five times and writing each integer down. There are five random integers in the input, one per line. Use all of them to make a list (dataset), then print its mode.
Statistics module
The most common value
Report a typo
Sample Input 1:
5
7
3
2
7Sample Output 1:
7Write 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.