Skip to ContentGo to accessibility pageKeyboard shortcuts menu
OpenStax Logo

Highlights from this chapter include:

  • A while loop runs a set of statements, known as the loop body, while a given condition, known as the loop expression, is true.
  • A for loop can be used to iterate over elements of a container object.
  • A range() function generates a sequence of integers between the two numbers given a step size.
  • A nested loop has one or more loops within the body of another loop.
  • A break statement is used within a for or a while loop to allow the program execution to exit the loop once a given condition is triggered.
  • A continue statement allows for skipping the execution of the remainder of the loop without exiting the loop entirely.
  • A loop else statement runs after the loop's execution is completed without being interrupted by a break statement.

At this point, you should be able to write programs with loop constructs. The programming practice below ties together most topics presented in the chapter.

Function Description

range(end)

Generates a sequence beginning at 0 until
end
with step size of 1.

range(start, end)

Generates a sequence beginning at start until end with step size of 1.

range(start, end, s)

Generates a sequence beginning at start until end with the step size of s.

Loop constructs Description

while loop

    # initialization
    while expression:
      # loop body

    # statements after the loop
    

for loop

    # initialization
    for loop_variable in container:
      # loop body

    # statements after the loop
    

Nested while loop

    while outer_loop_expression:
      # outer loop body (1)
      while inner_loop_expression:
        # inner loop body
      # outer loop body (2)

    # statements after the loop
    

break statement

    # initialization
    while loop_expression:
      # loop body
      if break_condition:
        break
      # remaining body of loop

    # statements after the loop
    

continue statement

    # initialization
    while loop_expression:
      # loop body
      if continue_condition:
        continue
      # remaining body of loop

    # statements after the loop
    

Loop else statement

    # initialization
    for loop_expression:
      # loop body
      if break_condition:
        break
      # remaining body of loop
    else:
      # loop else statement
    
    # statements after the loop
    
Table 5.4 Chapter 5 reference.

Try It

Prime numbers

Write a program that takes in a positive integer number (N) and prints out the first N prime numbers on separate lines.

Note: A prime number is a number that is not divisible by any positive number larger than 1. To check whether a number is prime, the condition of number % i != 0 can be checked for i greater than 1 and less than number.

Ex: if N = 6, the output is:

    2
    3
    5
    7
    11
    13
    
Citation/Attribution

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 permission.

Want to cite, share, or modify this book? This book uses the Creative Commons Attribution License and you must attribute OpenStax.

Attribution information
  • If you are redistributing all or part of this book in a 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 digital format, then you must 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

© Mar 15, 2024 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution License . The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo 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.