0
Numeric functions
IÂŽve got this problem and I donÂŽt understand why the answer is 44. Can anyone help? nums = (55, 44, 33, 22) print(max(min(nums[:2]), abs(-42)))
2 Réponses
+ 3
max(min(nums[:2]), abs(-42))
max(min([55, 44]), 42)
max(44, 42)
44
+ 1
thanks mate!