Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python Tuple – min() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

While working with tuples many times we need to find the minimum element in the tuple, and for this, we can also use min(). In this article, we will learn about the min() method used for tuples in Python.

Syntax of Tuple min() Method

Syntax: min(object)

Parameters:

  • object: Any iterable like Tuple, List, etc.

Return type: minimum element from the tuple.

Example

Tuple =( 4, 2, 5, 6, 7, 5)

Input: min(Tuple)

Output: 2

Explanation: The min() method returns the smallest element of the given tuple.

Using tuple min() Method

Here we are finding the minimum of a particular tuple.

Python3




# Creating tuples
Tuple = ( -1, 3, 4, -2, 5, 6 )
   
res = min(Tuple)
print('Minimum of Tuple is', res)


Output:

Minimum of Tuple is -2

Using tuple min() Method for string elements

Here we are finding the minimum element out of the tuple that constitutes of string elements based on length.

Python3




# Creating tuples
Tuple = ( "Geeks", "For", "Geeks", "GeeksForGeeks")
  
res = min(Tuple)
print('Minimum of Tuple is', res)


Output:

Minimum of Tuple is For

Using min for equal-length elements

Here we are finding the minimum element among the tuple of equal length elements. Where it gives the lexicographically smallest string.

Python3




# alphabets tuple
alphabets = ('GFG', 'gfg', 'gFg', 'GfG', 'Gfg')
  
res = min(alphabets)
print('Minimum of Tuple is', res)


Output:

Minimum of Tuple is GFG

My Personal Notes arrow_drop_up
Last Updated : 07 Nov, 2022
Like Article
Save Article
Similar Reads
Related Tutorials