MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / get_stats

Function get_stats

example_code/item_031.py:51–54  ·  view source on GitHub ↗
(numbers)

Source from the content-addressed store, hash-verified

49
50print("Example 1")
51def get_stats(numbers):
52 minimum = min(numbers)
53 maximum = max(numbers)
54 return minimum, maximum
55
56lengths = [63, 73, 72, 60, 67, 66, 71, 61, 72, 70]
57

Callers 1

item_031.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected