Computer Science, asked by samkamalesh2004, 6 days ago

A tuple is declared as T1 = (5,15,20,35) What will be the output of
print(max(T1)) ?

Answers

Answered by sumitdassbbsindigo
2

Answer:35 will be the output

Explanation:

Answered by sameerPandey27
0

Answer:

so the output is 80

Explanation:

T1 = (5 , 15 , 20 , 35)

print(sum(T1) + min(T1))

Output :

sum(T1) = 5 + 15 + 20 + 35

sum(T1) = 75

min(T1) = 5

sum(T1) + min(T1) = 75 + 5

sum(T1) + min(T1) = 80

So, output is 80.

Similar questions