how to unpack the whole list without index them individually python
def get(x, y, z):
return x + y + z
numbers = [1, 2, 3]
#instead of writing numbers[0], numbers[1], numbers[2] in get function
print(get(*numbers)) #add an astros before the name of the list
#output >>> 6