New game
Download
Get Academic Plan
Share game
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:

Python Essentials Quiz

Quiz

Played 1 %Accuracy 70 Average time 02:01

About this activity

Test your Python knowledge.

Created by

India

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
Python Essentials Quiz
 

Python Essentials QuizOnline version

Test your Python knowledge.

by nikhil agrawal
1

What is the type of an empty Python list?

2

Which keyword creates a generator function?

3

What does the zip function do?

4

Which method adds a single item to the end of a list?

5

A lambda in Python is:

6

What does the Global Interpreter Lock (GIL) imply in CPython?

7

What does [x*x for x in range(3)] produce?

8

How do you create a virtual environment named env?

9

What is the difference between shallow and deep copy?

10

Which statement ends a loop prematurely?

Feedback

A list is created with [] and has dynamic size; others are different container types.

Generators use yield to produce a sequence lazily; return would end the function.

Zip pairs corresponding elements from each iterable; lengths are truncated to the shortest.

append adds one item; insert can place it anywhere; extend adds multiple values.

Lambdas are small, unnamed functions; they are not for naming or control flow.

GIL prevents true parallel execution of Python bytecode in CPython; C extensions can release it.

Range(3) yields 0,1,2; squaring each gives 0,1,4.

Use the venv module via python -m venv to create isolated envs.

Shallow copies copy the outer structure; nested objects are shared; deep copies duplicate nested objects.

break exits the loop immediately; continue jumps to next iteration.

Are you sure you want to leave the page?

If you leave, you will lose the game in progress.