t281.py 61 B

12345
  1. def f(a, b, c):
  2. print a, b, c
  3. args = [5, 6, 7]
  4. f(*args)