The function is written in python and it received three arguments and returns them 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"))
learn more on python here: https://brainly.com/question/13462052
#SPJ1