How do you find the average of an array in Python?

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

How do you find the average of an array in Python?

pythonsevenmentor
You can find the average (mean) of an array in Python using multiple methods. Here are some efficient ways:

import numpy as np
arr = [10, 20, 30, 40, 50]
average = np.mean(arr)
print(average)  # Output: 30.0


2️⃣ Using Python’s Built-in sum() and len() Functions

arr = [10, 20, 30, 40, 50]
average = sum(arr) / len(arr)
print(average)  # Output: 30.0

Python Course in Pune