1. Building

1ground_floor_building = "Souza Family"
2first_floor_building = "Brito Family"
3second_floor_building = "Mr. Jorge"
4third_floor_building = "Tanaka Family"
line that just executed

next line to execute

Frames
Objects

Activity: CodeLens 1.1 (cl_l17_1a_en)

1building = ["Souza Family",
2            "Brito Family",
3            "Mr. Jorge",
4            "Tanaka Family"]
5print(building[0])
6print(building[1])
7print(building[2])
8print(building[3])
line that just executed

next line to execute

Print output (drag lower right corner to resize)
Frames
Objects

Activity: CodeLens 1.2 (cl_l17_1b_en)

You have attempted 1 of 2 activities on this page