Please enable JavaScript to use CodeHS

Fundamentos de ciencias de la computación AP en Python

Lesson 5.3 Funciones y parámetros 3

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