Ejemplo 1: problema MIn-Max en python
x = sum(arr)
minValue = x - max(arr)
maxValue = x - min(arr)
print(minValue, maxValue)
Ejemplo 2: código mínimo máximo en python
listA = [18, 19, 21, 22]
print('The smallest number from listA is:', min(listA)) # 18
print('The largest number from listA is:', max(listA)) # 22
strA = 'AppDividend'
print('The smallest character from strA is:', min(strA)) # A
print('The largest character from strA is:', max(strA)) # v
strA = 'AppDividend'
strB = 'Facebook'
strC = 'Amazon'
print('The smallest string is:', min(strA, strB, strC)) # Amazon
print('The largest string is:', max(strA, strB, strC)) # Facebook
Ejemplo 3: cómo hacer que un script de Python escriba el valor mínimo y máximo
how to make a python script write the minimum add maximum value
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)