Tuple min(tuple) Function

In Python Built-In tuple min(tuple) function is used to returns the elements from the given tuple with minimum value.

Syntax:
There is 1 Parameter used in tuple min(tuple) Function: tuple from which min value to be returned.
Example:
#min() function

tuple1 = ['TOM', 'JOHN']
tuple2 = [999, 555, 222, 777]
print ("Min Value : ", min(tuple1))
print ("Min Value : ", min(tuple2))