Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:27:07 +02:00
parent c469b67f0b
commit a2cd6db3b0
22 changed files with 67 additions and 64 deletions

View File

@ -3,9 +3,9 @@ title: average
tags: math,list,beginner
---
Returns the average of two or more numbers.
Calculates the average of two or more numbers.
- Use `sum()` to sum all of the `args` provided, divide by `len(args)`.
- Use `sum()` to sum all of the `args` provided, divide by `len()`.
```py
def average(*args):