[Solved]-Python Write Program Draw Quiz Score Histogram Program Read Data File Line File Contains O Q37242371
Python
Write a program to draw a quiz score histogram. Your programshould read data from a file, where each line of the file containsone number in the range 0 to 10. Your program must count the numberof occurrences of each score and then draw a vertical bar chart foreach possible score (0 to 10) with a height corresponding to thecount of the number of lines with that score. For example, if 15lines contained an 8, then the height of the bar for 8 should be15. Hint: use a list that stores the count for each possiblescore.
Note: Use Graphics.py to create the bar. DO NOT ANSWER IF YOU DONOT USE GRAPHICS.PY
Expert Answer
Answer to Python Write a program to draw a quiz score histogram. Your program should read data from a file, where each line of the… . . .
OR

