Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Positional-Only Arguments

00:00 Now that you’ve seen keyword-only arguments, let’s take a look at positional-only arguments. This is valid as of Python version 3.8. You can use a bare slash (/), similar to the bare asterisk (*) in the previous lesson, to indicate what parameters must be supplied positionally. In this example, where we define a simple function f() to take three parameters and display them one at a time, the use of the / indicates that x and y must be provided positionally.

00:39 No requirement is made on z. It could be provided positionally or using a keyword. If we want to see that in action,

00:56 I can call f(),

01:01 I can specify z as a keyword argument, and that works! However, if I try to specify x as the keyword argument and y, as well as z, I get an error telling me that we tried to pass positional-only arguments as a keyword argument.

01:30 And you can actually mix positional-only arguments and keyword-only arguments in the interface for a function. You specify the required positional arguments first, followed by the slash, then arguments that can be positional or keyword, and then an asterisk, and then following those, only arguments that can be passed using a keyword. I’ll call it g() here since I already have a function f() defined, but it’s going to take two positional-only arguments.

02:07 The / means that the following aren’t positional-only, then the * means those that follow must be provided positionally. And we’re just going to print them out.

02:25 We’re not interested in the body of this function. We’re interested in seeing how to call a function with those requirements. So, I can specify values for x and y, I must do so positionally.

02:41 I could choose to provide parameters for z and w positionally, but a and b have to be specified with a keyword argument.

02:56 I do have the option, however, to specify z and w using keyword arguments,

03:09 but I can’t specify y with a keyword argument, and once I specify one keyword argument, I have to provide all of the others using keywords.

03:24 But I get the error that y must be positional. I can’t supply it as a keyword. And if I try to supply a and b as positional arguments, I get a similar error that I provided more positional arguments than was expected.

03:46 This gives me a way to really fine-tune my interface to my function to specify what must be positional and what must be keyword. So again, x and y must be provided positionally, a and b must be provided using keywords, and in this example, z and w can be provided in either way.

04:13 Next, we will start taking a look at other aspects of writing functions, and those are about documentation: communicating to other programmers what your function does and how best to use it.

alvesmig on Feb. 20, 2024

Hi, I love your teaching.

There is a typo. You said at 02:07:

The / means that the following aren’t positional-only, then the * means those that follow must be provided position-only.

I think it should be as a keyword-only instead of position-only. Best regards Miguel

Become a Member to join the conversation.