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 Respuestas
+ 3
max(min(nums[:2]), abs(-42))
max(min([55, 44]), 42)
max(44, 42)
44
+ 1
thanks mate!