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 Basics Quiz

Quiz

Played 4

About this activity

Basic Python concepts

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 Basics Quiz
 

Python Basics QuizOnline version

Basic Python concepts

by Cebin Alex Panicker
1

What keyword starts a function definition in Python?

2

Which data type is mutable?

3

What does len() return for a container?

4

How do you create an empty list in Python?

5

What is the type of the value 3 in Python?

6

Which keyword starts exception handling?

7

How do you import a module named math?

8

What does // perform in Python?

9

What is the result of 'hello'[1]?

10

What does the colon after a for loop signify?

Feedback

def defines a function; other options are not proper starters for function definitions.

Lists can be changed after creation; tuples, strings, and floats are immutable.

len() gives item count in the container, not memory size or type.

Empty list literal is []. {} is a dict, () is a tuple, _empty is invalid.

3 is an integer type, not a float or other type.

Try begins a block that may raise exceptions; except handles them.

import math brings the math module into scope.

// divides and returns the largest integer result not greater than the quotient.

Indexing starts at 0; index 1 is the second character 'e'.

The colon introduces the suite (indented block) that runs for each item.

Are you sure you want to leave the page?

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