How to create a python function which take only positional arguments and no keyword arguments?
There's PEP 570, which is only a draft, so one cannot create positional-only arguments in pure Python. This can, however, be done in a function written in C for Python.