cara membongkar seluruh daftar tanpa mengindeksnya secara individual 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
Inquisitive Ibex