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
Get step-by-step solutions from verified subject matter experts
