tmp.py 111 B

12345678
  1. def test(a, b=None, c=None, d=None):
  2. print(a)
  3. print(b)
  4. print(c)
  5. print(d)
  6. test(*[1, 2, 3, 4])