Answers for "python function min number and max number"

1

min max python

def min_max(*n):
  return {"min":min(n),"max":max(n)}
print(min_max(-10,1,2,3,45))
Posted by: Guest on July-09-2021

Code answers related to "python function min number and max number"

Python Answers by Framework

Browse Popular Code Answers by Language