Merge pull request #419 from timgates42/bugfix_typo_numbers

docs: fix simple typo, noumbers -> numbers
This commit is contained in:
Angelos Chalaris
2020-12-24 15:33:47 +02:00
committed by GitHub

View File

@ -3,7 +3,7 @@ title: weighted_average
tags: math,list,intermediate
---
Returns the weighted average of two or more noumbers.
Returns the weighted average of two or more numbers.
- Use `sum()` to sum the products of the numbers by their weight and to sum the weights.
- Use `zip()` and a list comprehension to iterate over the pairs of values and weights.