#!/usr/local/bin/python3 def f(a, b=1, c=2): print(a,b,c) f(0, c=3, **{'b':4, 'c':5})