211k views
8 votes
Calculate the average high and low in python code for beginners pls

1 Answer

9 votes

Answer:

There are two ways to find the average of a list of numbers in Python. You can divide the sum() by the len() of a list of numbers to find the average. Or, you can find the average of a list using the Python mean() function

Step-by-step explanation:

User Michael Mayo
by
4.3k points