write a python program to find average of list of numbers entered through your keyboard
Answers
Answered by
4
Answer:
Python Program to Calculate the Average of Numbers in a Given List (algorithm)
Take the number of elements to be stored in the list as input.
Use a for loop to input elements into the list.
Calculate the total sum of elements in the list.
Divide the sum by total number of elements in the list.
Exit
using this algorithm program is written below
Attachments:
Answered by
3
Answer:
Python Program to Calculate the Average of Numbers in a Given List (algorithm)
Take the number of elements to be stored in the list as input.
Use a for loop to input elements into the list.
Calculate the total sum of elements in the list.
Divide the sum by total number of elements in the list.
Exit
using this algorithm program is written below
Explanation:
Attachments:
Similar questions