Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

min max python

def min_max(*n):
  return {"min":min(n),"max":max(n)}
print(min_max(-10,1,2,3,45))
Source by github.com #
 
PREVIOUS NEXT
Tagged: #min #max #python
ADD COMMENT
Topic
Name
8+7 =