Skip to ContentGo to accessibility page

4.8 Chapter summary

Highlights from this chapter include:

  • Booleans represent a value of True or False.
  • Comparison operators compare values and produce True or False.
  • Logical operators take condition operand(s) and produce True or False.
  • Operators are evaluated in order according to precedence and associativity.
  • Conditions are expressions that evaluate to True or False.
  • Decision statements allow different paths of execution (branches) through code based on conditions.
  • Decision statements can be nested inside other decision statements.
  • Conditional expressions are single-line versions of if-else statements.

At this point, you should be able to write programs that evaluate conditions and execute code statements accordingly with the correct order of operations. The programming practice below ties together most topics presented in the chapter.

Function Description
bool(x)

Converts x to a Boolean value, either True or False.

Operator Description

x == y
(Equality)

Compares the values of x and y and returns True if the values are equal and False otherwise. Ex: 10 == 10 is True.

x != y
(Inequality)

Compares the values of x and y and returns True if the values are inequal and False otherwise. Ex: 7 != 4 is True.

x > y
(Greater than)

Compares the values of x and y and returns True if the x is greater than y and False otherwise. Ex: 9 > 3 is True.

x < y
(Less than)

Compares the values of x and y and returns True if the x is less than y and False otherwise. Ex: 9 < 8 is False.

x >= y
(Greater than or equal)

Compares the values of x and y and returns True if the x is greater than or equal to y and False otherwise. Ex: 2 >= 2 is True.

x <= y
(Less than or equal)

Compares the values of x and y and returns True if the x is less than or equal to y and False otherwise. Ex: 8 <= 7 is False.

x and y
(Logical)

Evaluates the Boolean values of x and y and returns True if both are true. Ex: True and False is False.

x or y
(Logical)

Evaluates the Boolean values of x and y and returns True if either is true. Ex: True or False is True.

not x
(Logical)

Evaluates the Boolean value of x and returns True if the value is false and False if the value is true. Ex: not True is False.

Decision statement Description

if statement

    # Statements before

    if condition:
      # Body

    # Statements after

else statement

    # Statements before

    if condition:
      # Body
    else:
      # Body

    # Statements after

elif statement

    # Statements before

    if condition:
      # Body
    elif condition:
      # Body
    else:
      # Body

    # Statements after

Nested if statement

    # Statements before

    if condition:
      if condition:
        # Body
      else:
        # Body
    else:
      if condition:
        # Body
      else:
        # Body
    
    # Statements after
Conditional expression

expression_if_true if condition else expression_if_false

Table 4.5 Chapter 4 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.