Crear
Descargar
Obtener Plan Académico
Compartir juego
Test
Test

Lists

Intégralo en tu plataforma

Puedes integrar el juego en un LMS compatible con LTI 1.1 o LTI 1.3 como Canvas, Moodle, o Blackboard. De esta manera podrás guardar las puntuaciones automáticamente en el libro de calificaciones de esa plataforma.
Descargar
Has superado el número máximo de juegos que puedes integrar en Google Classroom con tu Plan actual.

Para integrar tantos juegos como quieras en Google Classroom, necesitas un Plan Académico o un Plan Comercial.

Has superado el número máximo de juegos que puedes integrar en Microsoft Teams con tu Plan actual.

Para integrar tantos juegos como quieras en Microsoft Teams, necesitas un Plan Académico o un Plan Comercial.

La descarga de juegos es una característica exclusiva para usuarios con un Plan Académico o un Plan Comercial.

Obtén ahora tu Plan Académico o Comercial y comienza a integrar tus juegos en tu LMS, web o blog.

Si lo deseas, puedes descargar un juego de prueba aquí y probar su integración:

Lists

Test

Jugadas 12

Sobre esta actividad

In this activity, you will review what you’ve learned about lists in Python. Think about your Minecraft inventory as an example of a list that holds many items. You will answer questions to practice your knowledge about how lists work.

Creada por

España

Descarga la versión para jugar en papel

Crea tu propio juego gratis desde nuestro creador de juegos
Compite contra tus amigos para ver quien consigue la mejor puntuación en esta actividad

Top juegos

%
Anónimo
Anónimo
%
%
%
Has superado el número máximo de juegos que puedes imprimir con tu Plan actual.

Para imprimir tantos juegos como quieras, necesitas un Plan Académico o un Plan Comercial.

Imprime tu juego
Lists
 

ListsVersión en línea

In this activity, you will review what you’ve learned about lists in Python. Think about your Minecraft inventory as an example of a list that holds many items. You will answer questions to practice your knowledge about how lists work.

por Future kids
1

Which sentence is correct about lists in Python?

2

Should You Store These Variables in a List? Decide if using a list is a good idea.

3

Which of the following statements is correct?

4

Which list method block would you use to add an element to a list at a specific position?

5

"Read the following question and select in which situations the number 2 is removed from the following list: list = ["word1", 2, True, "word2"]".

Feedback

Lists in Python are flexible. They can hold different types of data at the same time, like numbers, words, or even other lists. You can also change what's inside a list—add, remove, or replace items—by using special tools called "methods" (like append() or remove()).

These values are all related to the same person, so using a list makes sense. Grouping height, weight, and age together in a list helps keep the data organized and makes it easier to process or store multiple people's information in a consistent way.

The index tells you where the item is, and the value is the item you find there.

Insert method is used to add an element at a specific position in the list. To do this, you use an index, which is the number that indicates where in the list you want to place the new element.

Correct answer: They all are correct. - remove(2) removes the value 2 directly from the list. - After using pop(0) two times, the second removed element is 2. - After inserting a new item at the beginning, 2 ends up at index 2 and is removed with pop(2).

¿Estás seguro que quieres abandonar la página?

Al abandonar la página perderás el progreso del juego.