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 0

About this activity

Python basics awareness

Created by

Guatemala

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

Python basics awareness

by CESAR AUGUSTO POROJ ZARATE
1

What is the result of type(5) in Python?

2

Which keyword starts a function definition in Python?

3

Which data type is mutable in Python?

4

What does the 'in' operator do?

5

What is a Python dictionary?

6

Which is not a built-in Python type?

7

What is the purpose of try-except in Python?

8

Which syntax correctly loops over the numbers 0 to 4?

9

What is a decorator in Python?

10

Which statement raises an exception?

Explicación

5 is an integer, so its type is int.

def declares a function; lambda is an inline anonymous function.

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

'in' tests membership in sequences, lists, dicts, etc.

Dictionaries map keys to values for fast lookups.

array is from the array module; built-ins include list, dict, tuple.

Try-except blocks catch and handle runtime errors.

range(5) yields 0,1,2,3,4 for the loop.

Decorators wrap functions to modify behavior.

raise triggers an exception; catch/except handle it.

Are you sure you want to leave the page?

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