mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
f93cce66a6
* some pytest on math folder * Run the test function via a doctest Also format the code with psf/black as discussed in CONTRIBUTING.md * Update abs.py * Update average_mean.py
21 lines
503 B
Python
21 lines
503 B
Python
"""Find mean of a list of numbers."""
|
|
|
|
|
|
def average(nums):
|
|
"""Find mean of a list of numbers."""
|
|
return sum(nums) / len(nums)
|
|
|
|
|
|
def test_average():
|
|
"""
|
|
>>> test_average()
|
|
"""
|
|
assert 12.0 == average([3, 6, 9, 12, 15, 18, 21])
|
|
assert 20 == average([5, 10, 15, 20, 25, 30, 35])
|
|
assert 4.5 == average([1, 2, 3, 4, 5, 6, 7, 8])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
"""Call average module to find mean of a specific list of numbers."""
|
|
print(average([2, 4, 6, 8, 20, 50, 70]))
|