+2 votes
in Class 12 by kratos

Find the output from the following code:

T=(10,30,2,50,5,6,100,65)

print max(T)

print min(T)

1 Answer

+1 vote
by kratos
 
Best answer

The output is

100

2

...