Answer:
from functools import reduce
def prod_all(*args):
prod = reduce(lambda x,y: x *y, args)
return prod
result = prod_all(4,6,8)
print(result)
Step-by-step explanation:
The use of the "*args" passes a tuple of variable length to a python defined function. The function above takes any number of arguments and returns the product using the python reduce module and the lambda function.