Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 9 . Implement avg Now that you have fixed the header for avg, it is time to implement the function. Again, pay close attention

19. Implement avg
Now that you have fixed the header for avg, it is time to implement the function. Again, pay close attention to the specification. When you have implemented the function, test your answer with the test script. You should pass all tests (for now).
def avg(*args):
"""
Returns average of all of arguments (passed via tuple expansion)
Remember that the average of a list of arguments is the sum of all of the elements
divided by the number of elements.
Examples:
avg(1.0,2.0,3.0) returns 2.0
avg(1.0,1.0,3.0,5.0) returns 2.5
Parameter args: the function arguments
Precondition: args are all numbers (int or float)
"""
if len(args)==0:
return 0
total = sum(args)
denom = len(args)
average = total/denom
return avg
I am getting an error saying the call avg(3) returns , not 3. I am not sure why.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Successful Keyword Searching Initiating Research On Popular Topics Using Electronic Databases

Authors: Randall MacDonald, Susan MacDonald

1st Edition

0313306761, 978-0313306761

More Books

Students also viewed these Databases questions