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

Related Articles

Python Tuple – max() Method

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

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

Example

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

Input:

max(Tuple)

Output: 7

Explanation: The max() method returns the largest element of the given tuple.

Python tuple max() Method

Syntax: max(object)

Parameters:

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

Return type: maximum element from the tuple.

Example 1: Using tuple max() Method

Here we are finding the max of a particular tuple.

Python3




# Creating tuples
Tuple = ( 1, 3, 4, 2, 5, 6 )
   
res = max(Tuple)
print('Maximum of Tuple is', res)


Output:

Maximum of Tuple is 6

Example 2: Using tuple max() Method for string elements

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

Python3




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


Output:

Maximum of Tuple is GeeksForGeeks

Example 3: Using max for equal-length elements

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

Python3




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


Output:

Maximum of Tuple is gfg

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