Please enable JavaScript to use CodeHS

Fundamentos de ciencias de la computación AP en Python

Lesson 4.11 Bucle y medio

Description

En esta lección, los alumnos aprenderán a crear un Loop and a half. Un Loop and a Half es una forma específica de escribir un while loop con la condición True. Dentro del bucle, los alumnos crean un valor SENTINEL para salir del bucle siempre que se cumpla esa condición, haciendo que el bucle termine.


Objective

Students will be able to:

  • Explain how the loop-and-a-half structure is different from a traditional while loop
  • Explain what an infinite loop is
  • Explain what the break statement does
  • Create programs that use the loop-and-a-half structure to repeat code until a SENTINEL is met, causing the program to break out of the loop