mean = average. Python’s like, "here’s sum() and len(), figure it out" 😂
But seriously, two ways:
1. DIY:
```python
nums = [1, 3, 5]
avg = sum(nums) / len(nums)
```
2. Fancy way (numpy):
```python
import numpy as np
np.mean([1, 3, 5])
```
Numpy’s great if you’re doing lots of math stuff. Otherwise, keep it simple!
But seriously, two ways:
1. DIY:
```python
nums = [1, 3, 5]
avg = sum(nums) / len(nums)
```
2. Fancy way (numpy):
```python
import numpy as np
np.mean([1, 3, 5])
```
Numpy’s great if you’re doing lots of math stuff. Otherwise, keep it simple!
