Please enable JavaScript to use CodeHS

Python Basics with Tracy

Lesson 11.1 Creating Lists

Description

In this lesson, students are introduced to lists. They learn why lists are used in programs and how to create them. Lists are created like this:

list_name = [item_1, item_2, item_3, ...]

Objective

Students will be able to:

  • Explain why lists are useful in programs
  • Create lists with items of various types