0 out of 464 challenges solved
Write a function `check_none(test_tup)` that takes a tuple as input and returns `True` if any of the elements in the tuple are `None`, otherwise returns `False`. #### Example Usage ```python [main.nopy] print(check_none((10, 4, 5, 6, None))) # Output: True print(check_none((7, 8, 9, 11, 14))) # Output: False print(check_none((1, 2, 3, 4, None))) # Output: True ```
def check_none(test_tup): """ Check if the given tuple contains any None values. Args: test_tup (tuple): The tuple to check. Returns: bool: True if any element is None, False otherwise. """ # Implement the function logic here pass