Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

min and max in python

#min and max in python
L1 = eval(input('enter list:'))#eval() helps  inputting by user desires of list.
minimum=min(L1)#min() function helps to note smallest of the element.
print('minimum numeric',minimum)
maximum=max(L1)#max() function helps to note biggest of the element.
print('maximum numeric',maximum)
#output
enter list:[4,-8,65,24.0,24,7.25]
minimum numeric -8
maximum numeric 65
Comment

Max() Value And Min() Value


<?php

echo(max(0, 20, 50, 800, 178, -888));  // returns 800

echo(min(0, 30, 70, 90, -180, 400));  // returns -180

?>
Comment

min max python

def min_max(*n):
  return {"min":min(n),"max":max(n)}
print(min_max(-10,1,2,3,45))
Comment

min() and max() Function in python

>>> max(7,22,733,56)
733
>>> min(3,3663,8727,82)
3
>>> max('hello', 'how', 'are', 'you')
'you'
>>> min('hello', 'how', 'are', 'you', 'Sir')
'Sir'
Comment

PREVIOUS NEXT
Code Example
Python :: how to access dictionary inside an array python 
Python :: sort dict based on other list 
Python :: from django.urls import path 
Python :: python random distribution 
Python :: how to add to end of linked list python 
Python :: and logic python 
Python :: scipy cdf example 
Python :: extract all file in zip in python 
Python :: python code to calculate encryption time 
Python :: selenium python element id 
Python :: think python 
Python :: Get git sha 
Python :: reciprocal python 
Python :: Let’s add a docstring to the greeting method. How about, “Outputs a message with the name of the person”. 
Python :: how to give values to all users with discord api python grepper 
Python :: python returning rows and columns from a matrix string 
Python :: empaquetado y manejo dependencias en python 
Python :: how to add twoo segmen time series in a single plot 
Python :: RuntimeError: cannot open featureclass in python 
Shell :: kill localhost 3000 ubuntu 
Shell :: git store credential 
Shell :: expo fix dependencies 
Shell :: ubuntu install telegram 
Shell :: choco list installed 
Shell :: install ext-intl php7.4 ubuntu 
Shell :: install tkinter in ubuntu 
Shell :: install wps ubuntu 
Shell :: alpine linux add nano 
Shell :: how to install beautifulsoup4 
Shell :: remove oh my zsh ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =