A function that accepts n parameters can accept a list of size n as a single parameter.
Solution for How to use items in a list as the parameter for a function : You can use the * operator to unpack a list of parameters for a function Unpack the parameters in the list by prepending the name of the list with a * and passing it into the function.