'F' → Fullscreen
Create a new Python program named 1-21-processing-lists.
append(), then total them.count = int(input("How many scores? "))scores = []
for i in range(count): score = int(input("Enter a score: ")) scores.append(score)
total = 0
for score in scores: total = total + score
print(f"Total: {total}")len(scores) to find the average.count = int(input("How many scores? "))scores = []
for i in range(count): score = int(input("Enter a score: ")) scores.append(score)
total = 0
for score in scores: total = total + score
print(f"Total: {total}")
average = total / len(scores)print(f"Average: {average}")count = int(input("How many scores? "))scores = []
for i in range(count): score = int(input("Enter a score: ")) scores.append(score)
total = 0
for score in scores: total = total + score
print(f"Total: {total}")
average = total / len(scores)print(f"Average: {average}")
passing_score = int(input("Enter the passing score: "))passing_count = 0
for score in scores: if score >= passing_score: passing_count = passing_count + 1
print(f"Scores at or above {passing_score}: {passing_count}")Verify your program works correctly.
How many scores? 5 [Enter]Enter a score: 84 [Enter]Enter a score: 91 [Enter]Enter a score: 76 [Enter]Enter a score: 88 [Enter]Enter a score: 95 [Enter]Total: 434Average: 86.8Enter the passing score: 80 [Enter]Scores at or above 80: 3Answer the following questions before submitting your work.
total / len(scores) instead of just total?Submit the required files to the appropriate dropbox.