Skip to main content

Section 5.3 Function Invocation

Defining a new function does not make the function run. To execute the function, we need a function call. This is also known as a function invocation.
The way to invoke a function is to refer to it by name, followed by parentheses. Since there are no parameters for the function hello, we won’t need to put anything inside the parentheses when we call it. Once we’ve defined a function, we can call it as often as we like and its statements will be executed each time we call it.
Let’s take a closer look at what happens when you define a function and when you execute the function. Try stepping through the code above.
First, note that in Step 1, when it executes line 1, it does not execute lines 2 and 3. Instead, as you can see in blue “Global variables” area, it creates a variable named hello whose value is a python function object. In the diagram that object is labeled hello() with a notation above it that it is a function.
At Step 2, the next line of code to execute is line 5. Just to emphasize that hello is a variable like any other, and that functions are python objects like any other, just of a particular type, line 5 prints out the type of the object referred to by the variable hello. It’s type is officially ’function’.
Line 6 is just there to remind you of the difference between referring to the variable name (function name) hello and referring to the string “hello”.
At Step 4 we get to line 8, which has an invocation of the function. The way function invocation works is that the code block inside the function definition is executed in the usual way, but at the end, execution jumps to the point after the function invocation.
You can see that by following the next few steps. At Step 5, the red arrow has moved to line 2, which will execute next. We say that control has passed from the top-level program to the function hello. After Steps 5 and 6 print out two lines, at Step 7, control will be passed back to the point after where the invocation was started. At Step 8, that has happened.
The same process of invocation occurs again on line 10, with lines 2 and 3 getting executed a second time.

Note 5.3.1. Common Mistake with Functions.

It is a common mistake for beginners to forget their parenthesis after the function name. This is particularly common in the case where there are no parameters required. Because the hello function defined above does not require parameters, it’s easy to forget the parenthesis. This is less common, but still possible, when trying to call functions that require parameters.
Check your understanding

Checkpoint 5.3.2.

    What is a function in Python?
  • A named sequence of statements.
  • Yes, a function is a named sequence of statements.
  • Any sequence of statements.
  • While functions contain sequences of statements, not all sequences of statements are considered functions.
  • A mathematical expression that calculates a value.
  • While some functions do calculate values, the python idea of a function is slightly different from the mathematical idea of a function in that not all functions calculate values. Consider, for example, the turtle functions in this section. They made the turtle draw a specific shape, rather than calculating a value.
  • A statement of the form x = 5 + 4.
  • This statement is called an assignment statement. It assigns the value on the right (9), to the name on the left (x).

Checkpoint 5.3.3.

    What is one main purpose of a function?
  • To improve the speed of execution
  • Functions have little effect on how fast the program runs.
  • To help the programmer organize programs into chunks that match how they think about the solution to the problem.
  • While functions are not required, they help the programmer better think about the solution by organizing pieces of the solution into logical chunks that can be reused.
  • All Python programs must be written using functions
  • In the first several chapters, you have seen many examples of Python programs written without the use of functions. While writing and using functions is desirable and essential for good programming style as your programs get longer, it is not required.
  • To calculate values.
  • Not all functions calculate values.

Checkpoint 5.3.4.

    How many lines will be printed out to the console by executing this code?
    def hello():
       print("Hello")
       print("Glad to meet you")
    
  • 0
  • The code only defines the function. Nothing prints until the function is called.
  • 1
  • Check again.
  • 2
  • When the function is invoked, it will print two lines, but it has only been defined, not invoked.

Checkpoint 5.3.5.

    How many lines will be printed out to the console by executing this code?
    def hello():
       print("Hello")
       print("Glad to meet you")
    
    hello()
    print("It works")
    hello()
    hello()
    
  • 0
  • Here the the function is invoked and there is also a separate print statement.
  • 1
  • There is only one print statement outside the funciton, but the invocations of hello also cause lines to print.
  • 3
  • There are three print statements, but the function is invoked more than once.
  • 4
  • Each time the function is invoked, it will print two lines, not one.
  • 7
  • Three invocations generate two lines each, plus the line "It works".
You have attempted of activities on this page.