New game
Download
Get Academic Plan
Share game
Quiz
Quiz

Lists

Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

Lists

Quiz

Played 12

About this activity

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.

Created by

Spain

Download the paper version to play

Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

%
Anonymous
Anonymous
%
%
%
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
Lists
 

ListsOnline version

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.

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

Are you sure you want to leave the page?

If you leave the page, you will lose your game progress.