def find_range(n): lowest = min(n) highest = max(n) # Find the range r = highest - lowest return lowest, highest, r # src : Doing Math With Python