Open In App

Python Tuple - max() Method

Last Updated : 07 Nov, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

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

Next Article
Article Tags :
Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy