• splat
  • arguments
  • function
>>> def foo(a, b, c):
        return a + b + c
>>> a = [1, 2, 3]
>>> foo(*a)
6