Python Tuple max() Method (original) (raw)

Last Updated : 07 Nov, 2022

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:

Return type: maximum element from the tuple.

Example 1: Using tuple max() Method

Here we are finding the max of a particular tuple.

Python3

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

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 = ( 'GFG' , 'gfg' , 'gFg' , 'GfG' , 'Gfg' )

res = max (alphabets)

print ( 'Maximum of Tuple is' , res)

Output:

Maximum of Tuple is gfg

Similar Reads