``` def func_kw_only(a, b, *, c = 1, d = 2): print("hello") ``` TypeError: func_kw_only() missing 2 required keyword-only argument s: 'c' and 'd'