Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I am finding the average of numbers if the name matches. The code works fine if the numbers entered by users are whole numbers. when

I am finding the average of numbers if the name matches. The code works fine if the numbers entered by users are whole numbers. when number is with decimal, code doesn't work. Please help

if __name__ == '__main__':

n = int(input())

student_marks = {}

for _ in range(n):

name, *line = input().split()

scores = list(map(float, line))

student_marks[name] = scores

query_name = input()

if name == query_name:

sum_of_elements = sum(scores)

len_of_list = len(scores)

avg = sum_of_elements/len_of_list

print("{0:.2f}".format(avg))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions