I have a function that takes in 3 parameters, and I have a list that contains 3 arguments.
I want to use this list as the function's parameter, how do I do it?
for example:
def get_result(x, y, z):
'do_something'
vlist = [1,2,3]
get_result(vlist)