Computer Science, asked by priyanshi36, 8 months ago

write a python program to find average of list of numbers entered through your keyboard​

Answers

Answered by priyarocks04
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 vinay2461
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