Python keyword-only and position-only argumentsMay 15, 2022def function(pos1, pos2, /, pos_or_kwd, *, kwd1, kwd2): ...