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.

Passing Mutable Objects and Side Effects

00:00 Let’s look at another example of passing an object as an argument to a function.

00:07 In the last lesson, you learned that a Python function can’t change the value of an argument by reassigning the corresponding parameter to something else. However, Python can mutate the object passed as an argument if the object itself, the object that’s passed as an argument, can itself be mutated.

00:28 So, here’s an example. Let’s define a function that takes a single parameter. And, assuming that there’s a zeroth element to it, we’re going to modify it. Now, of course, this function will cause an error if the parameter we provide it doesn’t have a zeroth element, but we’re only using it for this one example, so we’ll be fine.

00:53 Let’s create a list that has the strings 'foo', 'bar', 'baz', and 'quz'.

01:05 Now, a list is mutable, so when I call f() on my list, it’s going to change element 0 from 'foo' to those three hyphens ('---'). And if I create another function… I’ll call this one g(). It’s going to act on a dictionary. And again, we will only provide a dictionary to it for the purposes of this example.

01:34 It’s going to assign 'bar' to name 22.

01:40 And so if we create a dictionary that maps 'foo' to 1, 'bar' to 2, and 'baz' to 3,

01:55 and then pass that as a parameter to g(), it’s going to change the mapping of 'bar' from 2 to 22, because the dictionary object is mutable.

02:08 And so here we can see changes to the object that was passed as an argument to that function.

02:17 So, passing an object as an argument, let’s review. Passing an immutable object—like int, str (string), tuple, and so on and so forth—acts like pass-by-value.

02:27 The function can’t modify the object. The object and the calling environment is unaffected by anything we might do to it inside the function. If you pass a mutable object, like a list or a dictionary, it’s like pass-by-reference. Again, you can’t reassign the parameter to something else, but you can modify the object that you get.

02:50 This is an example of something we call side effects. A Python function is said to cause a side effect if it modifies its calling environment—for example, modifying an argument object. Now, because Python allows it, should you do it? Well, if someone using your function knows very clearly that that’s the intent, then it’s fine. In fact, for some functions, the side effect is the primary reason we use it.

03:19 But oftentimes, a side effect is created when the writer of the function doesn’t even realize that it’s happening, and so we try to write functions that have side effects very sparingly, make sure we know what we’re doing, make sure that that’s the intent, and if not, don’t do anything that’s going to reassign a parameter value to anything else.

03:41 And that completes our look at argument passing. Next up are a few lessons on how you exit a function.

Become a Member to join the conversation.