Python Tuple max() Method


Advertisements


Description

The method max() returns the elements from the tuple with maximum value.

Syntax

Following is the syntax for max() method −

max(tuple)

Parameters

  • tuple − This is a tuple from which max valued element to be returned.

Return Value

This method returns the elements from the tuple with maximum value.

Example

The following example shows the usage of max() method.

Live Demo
#!/usr/bin/python

tuple1, tuple2 = (123, 'xyz', 'zara', 'abc'), (456, 700, 200)
print "Max value element : ", max(tuple1)
print "Max value element : ", max(tuple2)

When we run above program, it produces following result −

Max value element :  zara
Max value element :  700

python_tuples.htm

Advertisements