error message, and I have tried to fix the problem but I can't quite figure out where the issue is. Can you help me? exercise_points = [0]*11 # List to store number of students who completed different number of exercises grade_count = [0]*6 # List t
error message, and I have tried to fix the problem but I can't quite figure out where the issue is. Can you help me? exercise_points = [0]*11 # List to store number of students who completed different number of exercises grade_count = [0]*6 # List t
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Hi! I get this error message, and I have tried to fix the problem but I can't quite figure out where the issue is. Can you help me?
exercise_points = [0]*11 # List to store number of students who completed different number of exercises
grade_count = [0]*6 # List to store number of students who received different grades
# Loop to get input from the user
while True:
input_string = input("Exam points and exercises completed: ")
if not input_string:
break
exam_points, exercises_completed = map(int, input_string.split())
# Convert number of exercises completed into exercise points
exercise_points_earned = min(exercises_completed // 10, 10)
exercise_points[exercise_points_earned] += 1
# Determine total number of points and grade
total_points = exam_points + exercise_points_earned
if exam_points < 10:
grade = 0
elif total_points < 15:
grade = 0
elif total_points < 18:
grade = 1
elif total_points < 21:
grade = 2
elif total_points < 24:
grade = 3
elif total_points < 28:
grade = 4
else:
grade = 5
grade_count[grade] += 1
# Calculate statistics
total_students = sum(grade_count)
pass_count = sum(grade_count[1:])
pass_percentage = pass_count / total_students * 100
points_average = sum([i * grade_count[i] for i in range(6)]) / total_students
# Print statistics
print("Statistics:")
print("Points average: {:.1f}".format(points_average))
print("Pass percentage: {:.1f}".format(pass_percentage))
print("Grade distribution:")
for i in range(5, -1, -1):
print("{}: {}".format(i, "*" * grade_count[i]))
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 5 steps with 3 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education