Please enable JavaScript to use CodeHS

Fundamentos de ciencias de la computación AP en Python

Description

En esta lección, los alumnos aprenden sobre funciones y parámetros en el contexto de Python, basándose en sus conocimientos previos sobre el trabajo con funciones en Karel. Esta lección se centra específicamente en definir y llamar funciones, y en pasar parámetros sencillos y únicos a las funciones.

Objective

Students will be able to:

  • Explain the purpose of functions
  • Define their own Python functions
  • Utilize (call) their Python functions to solve simple problems
  • Define and call functions that take in parameters as input
Description

En esta lección, los alumnos trabajarán y definirán y llamarán a sus propias funciones que toman varios parámetros como entrada e imprimen la salida.

Objective

Students will be able to:

  • Explain the purpose of functions
  • Define their own Python functions
  • Utilize (call) their Python functions to solve simple problems
  • Define functions that take in multiple parameters as input, and use print statements for output
Description

En esta lección, los alumnos siguen trabajando con múltiples parámetros que crean gráficos como salida, lo cual es muy útil, ya que crear varios objetos gráficos diferentes implica escribir el mismo código una y otra vez (establecer el tamaño, establecer el color, establecer la ubicación, etc.).

Objective

Students will be able to:

  • Explain the purpose of functions
  • Define their own Python functions
  • Utilize (call) their Python functions to simplify their graphics programs
  • Identify repeated code that can be simplified with functions and parameters
  • Define functions that take in multiple parameters as input, and create graphics as output
  • Pass parameters of the correct number and type to their defined Python functions
Description

En esta lección, los alumnos aprenden sobre los valores de retorno para poder escribir funciones que realicen algún trabajo y devuelvan el resultado o lo utilicen más adelante en el programa.

Objective

Students will be able to:

  • Explain the purpose of returning a value from a function.
  • Define functions that return values.
  • Create programs that define and call functions with return values and store the result for later use.
Description

En esta lección, los alumnos trabajan y definen funciones con valores de retorno y más de un parámetro.

Objective

Students will be able to…

  • Explain the purpose of returning a value from a function.
  • Create functions that return values.
  • Create programs that call functions with return values and use the return values to solve a higher-order problem.
Description

En esta lección exploraremos el ámbito de una variable, es decir, dónde está “definida” o dónde existe.

Objective

Students will be able to:

  • Identify the scope of a variable
  • Identify which variables are in scope at a given point in a program
Description

En esta lección, los alumnos exploran la forma que tiene Python de tratar los errores con excepciones.

Objective

Students will be able to:

  • create programs that can gracefully handle exceptions
  • continue to function when an error is raised
Description

En esta lección, los alumnos echarán un vistazo entre bastidores a Karel. Aunque ya están familiarizados con los comandos básicos, esta lección explora detalles sobre cómo se crea la API de Karel. Los alumnos comprenderán mejor las API y, al mismo tiempo, aplicarán conceptos de gráficos y funciones.

Objective

Students will be able to:

  • Understand how an API abstracts away detail for a program such as Karel
  • Use functions and event-driven programming to create a simple API
Description

¡Utiliza tus conocimientos de Python básico para crear algunos programas divertidos! Los alumnos crearán sus propios dibujos Fantasma de Pac-Man, un Juego de Adivinanzas y un dibujo de su propia elección. Esto permitirá a los alumnos ser creativos con su código para demostrar lo que han aprendido.

Objective

Students will be able to…

  • Synthesize the skills and concepts from the Python and Graphics, Python Control Structures, and the Functions and Parameters units to solve increasingly difficult programming challenges
  • Break down a large problem into smaller parts using Top Down Design, and solve each of these smaller parts using functions
  • Create helpful comments with preconditions and postconditions to help the reader understand the code
  • Find and fix bugs in large programs
Description

Esta lección es una evaluación sumativa de los objetivos de aprendizaje de la unidad.

Objective

Assess student achievement of the learning goals of the unit