Only Positional Arguments (/): In Python, any argument that’s not passed by keyword is passed by position. You must pass positional arguments in the same order that you defined their parameters in the ...
This PEP proposes to introduce a new syntax, /, for specifying positional-only parameters in Python function definitions. Positional-only parameters have no externally-usable name. When a function ...