0 out of 68 challenges solved
def sub(first, *args): """ Subtracts all the arguments (except the first one) from the first argument and returns the result. Args: first: The first argument. *args: The additional arguments. Returns: int or float: The result of the subtraction. """ # TODO: Implement the sub function pass