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 see our video player troubleshooting guide to resolve the issue.

Functions as First-Class Objects in Python

What does “Functions as First Class Objects” mean? You’ll see in this lesson that it means that functions can be passed around into lists and used as arguments for other functions. In the next lesson you’ll learn how to define functions inside functions.

00:00 When I say that functions are first-class objects, I mean that they can be used as arguments also, just like any other object—a string, an integer, a float, a list, and so forth. Let me have you dive into that.

00:12 Let’s make a couple quick functions and see what can be done. These are two printing functions that are slightly different. The first one, say_hello(), is going to use an f-string and return it saying f"Hello " with curly braces around the argument. To call the function, say_hello(), and then put in a name.

00:34 The second function is a little more flowery.

00:45 I’m going to have you call it in the same way. Let’s try that with "Gregor". So these objects say_hello and be_awesomethey’re both functions. Could they be put into a list? Let’s make a list.

00:57 my_list, square brackets, put say_hello in, comma, and then be_awesome. Sure! Can you call them out of it? For the first index, yup—there’s say_hello.

01:11 What if you wanted to call one of them? Can you put your arguments in just after where you’re pulling it out of the list? Sure! Let’s tell 'Thomas' how awesome we are.

01:24 Great. If a function can be put into a list and called out of a list the same way that any other variable can, can a function be put into a function as an argument?

01:36 Can one function literally call another function? Let’s try it out. For the next function—I’ll have you call it greet_bob()—and greet_bob() takes a function, some form of a greeter function, as its argument.

01:48 So instead of a name it’s saying, “Well, what function do you want?” and then it returns that greeter function with this name, "Bob". So it’s going to plug "Bob" into whatever greeter function as an argument.

02:04 So, how would you use it? greet_bob itself is a function, so to use greet_bob(), you enter in the function you want. You have two to choose from. say_hello—you don’t need to put an argument here, it’s going to get it here.

02:22 So you just passed a function, say_hello, into another function, and called it. You just accomplished some pretty cool stuff.

02:34 So this one, I’ll have you say, be_awesome, and Bob will get the awesome greeting.

02:42 So again, what are you referencing? You created this function named say_hello(), and be_awesome() is your other function. They’re saved at those memory locations.

02:55 When you reference them, here, it’s calling them into whichever one has been picked. Let’s go to the next level of inception and talk about functions inside of functions.

Paul M on Aug. 11, 2020

One thing that might be helpful to point out to readers here is that if your application passes or uses an function as an object, make sure not to actually call the function (i.e. include the ()). Something like:

# Might not work:
def call_func(some_func()):
    return some_func("123")
# Probably what is needed:
def call_func(some_func):
    return some_func("123")

This tripped me up in a QT application and was not fun to debug…

bhaskarj4 on Dec. 25, 2020

What does return f do?

Ricky White RP Team on Dec. 27, 2020

Hi @bhaskarj4. The f at the beginning of the quotes is how you denote an f-string in Python. This is one way in which you can format a string. To learn more about f-strings you can use this course: realpython.com/courses/formatting-python-strings/

shuhuali1010 on March 7, 2021

What is a first-class object in Python? Is there a tutorial about it? I have watched OOP in Python and it wasn’t covered.

Bartosz Zaczyński RP Team on March 8, 2021

@shuhuali1010 The phrase first-class object or first-class citizen is informal jargon, which isn’t specific to Python. Essentially, it’s a fancy way of saying that functions behave the same as regular values like strings or numbers.

For example, you can assign a function to a variable and use that variable to call it:

>>> def add(x, y):
...     return x + y
... 
>>> operation = add
>>> operation(2, 3)
5

You can also pass a function to another function as a parameter:

>>> veggies = ["eggplant", "corn", "tomato"]
>>> sorted(veggies, key=len)
['corn', 'tomato', 'eggplant']

Finally, you can return a function from a so-called factory function:

>>> def make_adder(amount):
...     def add(x):
...         return x + amount
...     return add
... 
>>> add3 = make_adder(3)
>>> add3(2)
5

It’s a common way of defining decorators in Python.

Maram-dev on April 27, 2021

Amazing! Now I can understand functions!!! Thank you Chris! :)

Become a Member to join the conversation.