The ability to specify positional-only arguments using the /
marker in function definitions is among the many new improvements to the Python language coming in the upcoming 3.8 release. This addition to syntax has performance benefits and enables better API design. Let's look at the motivation behind positional-only arguments and how to use it, with examples.
Keyword-only arguments have been available in Python with the *
marker, and addition of /
marker for positional-only arguments improves the language’s consistency. With positional-or-keyword parameters, the mix of calling conventions is not always desirable. Consider these examples:
namedtuple(typenames, field_names, …)
arg1
, arg2
, …, etc for min()
If the users start using a keyword argument, the library author cannot rename the parameter because it would be a breaking change. In case of min()
, the name of the parameter provides no intrinsic value and forces the author to maintain its name forever since callers might pass arguments as a keywords. This problem is solved by positional-only arguments. In addition, the parsing and handling of positional-only arguments is faster.
To specify arguments as positional-only, a /
marker should be added after all those arguments in the function definition. Take this example:
def pow(x, y, /, mod=None):
r = x ** y
if mod is not None:
r %= mod
return r
The following would apply:
/
(in this case, x
and y
) can only be passed positionally.mod
can be passed positionally or with a keyword.>>> pow(2, 10) # valid
>>> pow(2, 10, 17) # valid
>>> pow(2, 10, mod=17) # valid
>>> pow(x=2, y=10) # invalid, will raise a TypeError
>>> pow(2, y=10) # invalid, will raise a TypeError
Another example:
def table_format(items, separator=',', /, prettify=False):
pass
prettify
).required
positional-only parameters (in this case, items
).A function definition, with all flavors of argument-passing variants, would look like this:
def f(pos1, pos2, /, pos_or_kwd, *, kwd1, kwd2):
----------- ---------- ----------
| | |
| Positional or keyword |
| - Keyword only
-- Positional only
Positional-only arguments were proposed in PEP 570, and it’s worth taking a look at the doc to understand the feature in more detail.