ali4566544's picture
Upload 13 files
c0fd849 verified
raw
history blame contribute delete
287 Bytes
def calculate_stats(data):
"""Calculate basic statistics"""
if not data:
return None
return {
"mean": sum(data) / len(data),
"min": min(data),
"max": max(data)
}
# Test
numbers = [1, 2, 3, 4, 5]
print(calculate_stats(numbers))