Question: Write a function that returns the average of 4 float numbers. Sample input- 12.90 13.45 34.00 76.78 Sample output 34.2825 What I have so far.

Write a function that returns the average of 4 float numbers.

Sample input-

12.90 13.45 34.00 76.78

Sample output

34.2825

What I have so far.

def average(lst): return avg

counter = 0 lst = [ ] while counter != 4: a = float(input()) lst.append(a) counter = counter + 1 print(average(lst))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!