Skip to ContentGo to accessibility page

6.7 Chapter summary

Highlights from this chapter include:

  • Functions are named blocks of code that perform tasks when called and make programs more organized and optimized.
  • Control flow is the sequence of program execution. Control flow moves between calling code and function code when a function is called.
  • Variable scope refers to where a variable can be accessed. Global variables can be accessed anywhere in a program. Local variables are limited in scope, such as to a function.
  • Parameters are function inputs defined with the function. Arguments are values passed to the function as input by the calling code. Parameters are assigned with the arguments' values.
  • Function calls can use positional arguments to map values to parameters in order.
  • Function calls can use keyword arguments to map values using parameter names in any order.
  • Functions can define default parameter values to allow for optional arguments in function calls.
  • Python uses a pass-by-object-reference system to assign parameters with the object values referenced by the arguments.
  • Functions can use return statements to return values back to the calling code.

At this point, you should be able to write functions that have any number of parameters and return a value, and programs that call functions using keyword arguments and optional arguments.

Construct Description
Function definition
def function_name():
  """Docstring"""
  # Function body
Parameter
def function_name(parameter_1):
  # Function body
Argument
def function_name(parameter_1):
  # Function body
    
function_name(argument_1)
Return statement
def function_name():
  # Function body
  return result # Returns the value of result to the caller
Variables (scope)
def function_name(parameter_1):
  # Function body
  local_var = parameter_1 * 5
  return local_var

global_var = function_name(arg_1)
Keyword arguments
def function_name(parameter_1, parameter_2):
  # Function body
    
function_name(parameter_2 = 5, parameter_1 = 2)
Default parameter value
def function_name(parameter_1 = 100):
  # Function body
Table 6.2 Chapter 6 reference.
Citation/Attribution
Reuse and redistribution of this content in digital or print format:
  • This book may not be used in the training of large language models or otherwise be ingested into large language models or generative AI offerings without OpenStax's prior written permission.
  • This book uses the Creative Commons Attribution-NonCommercial-ShareAlike License, which means that you can reuse and modify the material only for noncommercial purposes, must attribute OpenStax, and must distribute any derivative works under the same license.
  • Any commercial printing of this textbook, including using a local or custom printer, must be approved by OpenStax, and proper citation provided.
  • OpenStax-copyrighted images, activities, assessments, and similar components of this book are subject to the same licensing – CC-BY-NC-SA. They can be used for noncommercial purposes with attribution. Commercial use requires permission.
  • Permission requests: Anyone who intends to incorporate this content (including text, images, and other components) into large language models, use it in AI offerings, use it commercially (including in print), and/or has questions about another use case is welcome to complete our reuse request form.
Attribution information
  • If you are redistributing all or part of this book in a noncommercial print format, then you must include on every physical page the following attribution:

    Access for free at https://openstax.org/books/introduction-python-programming/pages/1-introduction

  • If you are redistributing all or part of this book in a noncommercial digital format, then for every page that includes OpenStax content, you must license the derivative work under the same CC-BY-NC-SA license as the original, and include on every digital page view the following attribution:

    Access for free at https://openstax.org/books/introduction-python-programming/pages/1-introduction

Citation information

The information below includes the information needed to generate citations in most major styles (APA, MLA, etc.); you must reformat and organize the information as needed to fit the requirements of the style. Use the information below to generate a citation. We recommend using a citation tool such as this one.

© Apr 23, 2026 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo, and Rice University name, and Rice University logo trademarks, or wordmarks are not subject to the Creative Commons license and may not be reproduced without the prior and express written consent of Rice University.

This book utilizes the OpenStax Python Code Runner. The code runner is developed by Wiley and is All Rights Reserved.