def extract_max_value(data):
    """
    Extracts and returns the maximum value from a list of tuples.

    Args:
        data (list): A list of tuples containing values to be compared.

    Returns:
        tuple: The tuple with the maximum value.
    """
    return max(data, key=lambda x: x[1])