1. Edificio

1edificio_planta_baja = "La Familia Souza"
2edificio_1ra_planta = "La Familia Brito"
3edificio_2da_planta = "El Sr Jorge"
4edificio_3ra_planta = "La Familia Tanaka"
line that just executed

next line to execute

Frames
Objects

Activity: CodeLens 1.1 (cl_l17_1a)

1edificio = ["La Familia Souza",
2            "La Familia Brito",
3            "El Sr Jorge",
4            "La Familia Tanaka"]
5print(edificio[0])
6print(edificio[1])
7print(edificio[2])
8print(edificio[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)

You have attempted 1 of 2 activities on this page