0
Explanation of code
I don't understand this? nums = (55, 44, 33, 22) print(max(min(nums[:2]), abs(-42))) Answer is 44.
1 Antwort
0
nums[:2] =(55, 44) //index values 0 to 1 (2 not included)
abs(-42)=42
min(nums[:2]=44
max(44,42)=44
print(44)
I don't understand this? nums = (55, 44, 33, 22) print(max(min(nums[:2]), abs(-42))) Answer is 44.