=SUM("20", FALSE, 21,TRUE).What will be the result of this function?
Answers
Answered by
0
def sum(x, y):
sum = x + y
if sum in range(15, 20):
return 20
else:
return sum
print(sum(10, 6))
print(sum(10, 2))
print(sum(10, 12))
20
12
22
Similar questions
Science,
1 month ago
Math,
1 month ago
Math,
3 months ago
Hindi,
3 months ago
Computer Science,
10 months ago