Créer jeu
Télécharger
Obtenir Plan Académique
Partager le jeu
Test
Test

Lists

Intégrez-le à votre plateforme

Vous pouvez intégrer le jeu dans un LMS compatible avec LTI 1.1 ou LTI 1.3 comme Canvas, Moodle ou Blackboard. Les scores seront ainsi automatiquement enregistrés dans le carnet de notes de la plateforme.
Télécharger
Vous avez dépassé le nombre maximum de jeux que vous pouvez intégrer à Google Classroom avec votre Plan actuel.

Pour intégrer autant de jeux que vous le souhaitez dans Google Classroom, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Vous avez dépassé le nombre maximum de jeux que vous pouvez intégrer à Microsoft Teams avec votre Plan actuel.

Pour intégrer autant de jeux que vous le souhaitez dans Microsoft Teams, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Le téléchargement du jeu est une fonctionnalité exclusive pour les utilisateurs avec un Plan Académique ou un Plan Commercial.

Obtenez votre Plan Académique ou Plan Commercial dès maintenant et commencez à intégrer vos jeux dans votre LMS, votre site Web ou votre blog.

Si vous le souhaitez, vous pouvez télécharger une jeu de test ici et tester son intégration:

Lists

Test

Parties jouées 12

À propos de cette activité

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.

Créé par

Spain

Téléchargez la version pour jouer sur papier

Créez votre propre jeu gratuite à partir de notre créateur de jeu
Affrontez vos amis pour voir qui obtient le meilleur score dans ce jeu

Top Jeux

%
Anonyme
Anonyme
%
%
%
Vous avez dépassé le nombre maximum de jeux que vous pouvez imprimer avec votre Plan actuel.

Pour imprimer autant de jeux que vous le souhaitez, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Imprimez votre jeu
Lists
 

ListsVersion en ligne

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.

par 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).

Voulez-vous vraiment quitter la page ?

En quittant la page, vous perdrez la progression du jeu.