1.

Write the output from the following code:t=(‘a’,‘b’,‘c’,‘A’,‘B’)print max(t)print min(t)

Answer»

The output is

‘c’ 

'A’



Discussion

No Comment Found