Write a function called arg_reverser that takes three arguments and returns them in reverse order.
Function: arg_reverser
Parameters:
arg1: The first argument.
arg2: The second argument.
arg3: The third argument.
Returns: tuple: (arg3, arg2, arg1)
return (arg3, arg2, arg1)

Respuesta :

The function is written in python and it received three arguments and returns them in  reverse order.

How to write a function and return it in reverse order?

The function is represented in python. Therefore,

def arg_reverser(arg1, arg2, arg3):

    return arg3, arg2, arg1

print(arg_reverser("The first argument", "The second argument", "The third argument"))

Code explanation

  • We declared a function named "arg_reverser" and the function accepts the arguments named  arg1, arg2 and arg3.
  • We returned the reverse of our argument.
  • Then, finally, we call the function with its parameters.

learn more on python here: https://brainly.com/question/13462052

#SPJ1