Computer Science

Do min( ), max( ) always work for tuples ?

Python Tuples

4 Likes

Answer

No, min( ), max( ) does not always work for tuples. For min( ), max( ) to work, the elements of the tuple should be of the same type.

Answered By

2 Likes


Related Questions