Please enable JavaScript to use CodeHS

Utah Introducción a Python 1 y 2

Lesson 11.7 Listas Quiz

Description

En esta lección, los alumnos repasan los contenidos con un Cuestionario de Fin de Unidad de 10 preguntas.


Objective

Students will be able to:

  • Prove their knowledge of the following commands and concepts through a multiple choice quiz:
    • Creating lists (list_name = [item_1, item_2, ...])
    • Index values
    • Accessing list items (list_name[index])
    • Updating list items (list_name[index] = new_value)
    • Adding list items using:
      • append
      • extend
      • insert
      • +
    • Removing list items using:
      • pop
      • remove
      • del
    • Using additional list methods:
      • sort
      • reverse

Activities

These are all the activities included in the lesson

11.7.1 Listas Quiz