beyondgrader.com Logo
DemoBrowseAboutTeamLogin

Min Max Tuple

[email protected] // 1.0

Write a function called min_max that takes a list of numbers. It returns a tuple of the list's minimum value and maximum value, in that order. (You are encouraged to use built-in Python functions to find the extreme values!) If the list is empty, return None rather than a tuple.