min and max method in python code example
Example 1: python maths max value capped at x
def clamp(n, minn, maxn):
return max(min(maxn, n), minn)
Example 2: min max code in python
listA = [18, 19, 21, 22]
print('The smallest number from listA is:', min(listA))
print('The largest number from listA is:', max(listA))
strA = 'AppDividend'
print('The smallest character from strA is:', min(strA))
print('The largest character from strA is:', max(strA))
strA = 'AppDividend'
strB = 'Facebook'
strC = 'Amazon'
print('The smallest string is:', min(strA, strB, strC))
print('The largest string is:', max(strA, strB, strC))
Example 3: MIn-Max problem in python
x = sum(arr)
minValue = x - max(arr)
maxValue = x - min(arr)
print(minValue, maxValue)