Computer Science, asked by premswarup46, 5 months ago

write a program to find the average in Python ​

Answers

Answered by legend123890
1

Answer:

Python Program to Calculate the Average of Numbers in a Given List

  • 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.
Similar questions