def find_max(iterable):
    """
    Return the maximum value from an iterable.

    Args:
        iterable (list): A list of tuples containing values to compare.

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