Please enable JavaScript to use CodeHS

Fundamentos de ciencias de la computación AP en Python

Description

En esta lección, los alumnos aprenderán más cosas sobre los valores booleanos. Los valores booleanos se refieren a un valor que es verdadero o falso, y se utilizan para comprobar si una condición concreta es verdadera o falsa.

Objective

Students will be able to:

  • Create boolean variables to represent meaningful yes/no values
  • Print out the value of a boolean variable

Enduring Understandings

This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

  • EU 4.1 Algorithms are precise sequences of instructions for processes that can be executed by a computer and are implemented using programming languages. (LO 4.1.1)
  • EU 5.5 Programming uses mathematical and logical concepts. (LO 5.5.1)
Description

En esta lección, los alumnos aprenderán qué son los operadores lógicos. Los operadores lógicos permiten conectar o modificar expresiones booleanas. Tres operadores lógicos son y, o y no.

Objective

Students will be able to:

  • Describe the meaning and usage of each logical operator: or, and, and not.
  • Construct logical statements using boolean variables and logical operators
Description

En esta lección, los alumnos aprenden a utilizar los operadores de comparación. Los operadores de comparación permiten comparar dos valores.

Objective

Students will be able to:

  • Explain the meaning of each of the comparison operators (<, <=, >, >=, ==, !=)
  • Create programs using the comparison operators to compare values
  • Predict the boolean result of comparing two values
  • Print out the boolean result of comparing values
Description

En esta lección, los alumnos aprenden sobre las declaraciones if como forma de tomar decisiones y ejecutar código específico en función de la validez de una condición.

Objective

Students will be able to:

  • Explain the purpose of if statements
  • Create their own if statements to selective choose which code is executed in their programs
Description

En esta lección, los alumnos aprenderán a utilizar las teclas del teclado para controlar eventos. Los eventos de teclado capturan cuando el usuario pulsa teclas en el teclado. Esto permite a los alumnos escribir programas que toman la entrada del teclado para cambiar lo que ocurre en el programa.

Objective

Students will be able to:

  • Create interactive programs that use events to respond to the keyboard input.
Description

En esta lección, los alumnos aprenderán con más detalle los For Loops. Los For Loops en Python se escriben y ejecutan de la misma manera que los ejercicios de Karel, salvo que ahora los alumnos explorarán la modificación de la sentencia de inicialización, la sentencia de prueba y las declaraciones de incremento de los loops.

Objective

Students will be able to:

  • Create for loops in Pythion
  • Explain the purpose of for loops
  • Utilize for loops to avoid typing out repeated code
  • Use the loop counter i inside the for loop code to do something different on each iteration
Description

En esta lección, los alumnos explorarán con más detalle cómo pueden modificar la declaración de inicialización, la declaración de prueba y la declaración de incremento en un For Loop.

Objective

Students will be able to:

  • Explain the different parameters of the range function (starting value, ending value, and incrementer)
  • Create for loops that iterate differently than the basic for loop structure (ie count by twos or count backwards)
Description

En esta lección, los alumnos aprenderán a crear For Loops para resolver problemas cada vez más complicados utilizando for loops anidados y estructuras de control de bifurcación.

Objective

Students will be able to:

  • Explain the purpose of for loops
  • Create for loops to solve increasingly challenging problems
  • Create nested for loops
Description

En esta lección, los alumnos aprenderán cómo los números aleatorios pueden mejorar un programa y utilizarse en combinación con diversas estructuras de control.

Objective

Students will be able to:

  • Explain why random numbers are a useful part of computer programs
  • Create random values in a program
  • Utilize the DOCS for the Random Numbers function in order to learn how to generate random values
Description

En esta lección, los alumnos explorarán los while loops y las variables de Python. Esto combina las ideas de crear variables, actualizar variables a lo largo de un loop y determinar la condición final correcta.

Objective

Students will be able to:

  • Explain the purpose of a while loop
  • Create while loops to repeat code while a condition is true
  • Utilize while loops to solve new types of problems
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
Description

En esta lección, los alumnos repasan el contenido con un Quiz de la Unidad de 15 preguntas.

Objective

Students will be able to:

  • Prove their knowledge of control structures through a multiple choice quiz