0% found this document useful (0 votes)
92 views15 pages

Kids Games: A Python Project Presented by Jatinder Kumar Chaurasia Ankur Kumar Kandula Chaturya

This document describes a Python project for a kids learning game using image recognition. The game shows kids images for a period of time and then tests their ability to recognize and name the images. It uses Tkinter for the graphical user interface and grids, packs and frames to organize buttons, labels, menus and other widgets. Screenshots show the game interface where a user can select image names and submit them to check their answers.

Uploaded by

Yash shinde
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
92 views15 pages

Kids Games: A Python Project Presented by Jatinder Kumar Chaurasia Ankur Kumar Kandula Chaturya

This document describes a Python project for a kids learning game using image recognition. The game shows kids images for a period of time and then tests their ability to recognize and name the images. It uses Tkinter for the graphical user interface and grids, packs and frames to organize buttons, labels, menus and other widgets. Screenshots show the game interface where a user can select image names and submit them to check their answers.

Uploaded by

Yash shinde
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

Kids Games

A python project presented by


Jatinder Kumar Chaurasia
Ankur Kumar
Kandula Chaturya

1/5/2017 A python project 1


Project information
KIDS LEARNING GAME :Based on Image Recognition, a game in
which the kids will watch the various images for some particular
time duration and after that they have to recognize them by the
names of images.

1/5/2017 A python project 2


Introduction
Games and education have a very important part in our life.
Playing games that give some knowledge and improve our
memory power.

1/5/2017 A python project 3


Graphical User Interface

GUI (graphical user interface) programming lets


your program use a windowing environment to
interact with the user and display graphics.
Tkinter is the standard GUI library for Python. Python
when combined with Tkinter provides a fast and easy
way to create GUI applications. Tkinter provides a
powerful object-oriented interface to the Tk GUI toolkit.

1/5/2017 A python project 4


Geometry
 Grid():The Grid geometry manager puts the widgets in a 2-dimensional table. The
master widget is split into a number of rows and columns, and each “cell” in the resulting
table can hold a widget. In grid geometry box, we used sticky(defines how to expand the
widget if the resulting cell is larger than the widget itself),column, rows, padx (Optional
horizontal padding to place around the widget in a cell, default is 0),pady (vertical
padding)

 pack(): The Pack geometry manager packs widgets in rows or columns. You can use
options like fill, expand, and side to control this geometry manager.

1/5/2017 A python project 5


Widgets used in the project
 Button: The Button widget is used to display buttons in your application.
 Checkbutton : The Checkbutton widget is used to display a number of options as
checkboxes. The user can select multiple options at a time.
 Label: The Label widget is used to provide a single-line caption for other widgets. It can
also contain images.

 Frame: The Frame widget is used as a container widget to organize other widgets.
 Menu: The Menu widget is used to provide various commands to a user. These
commands are contained inside Menubutton.

1/5/2017 A python project 6


Project Screenshot

submit

1/5/2017 A python project 7


Project sceenshot

On clicking OK button
new frame will appear

After recognizing
the image user
press the OK button

1/5/2017 A python project 8


Project screenshot We have selected the names
Select the list of items
Of animals

On submit result will


After selecting the names , appear
Press submit button

1/5/2017 A python project 9


1/5/2017 A python project 10
1/5/2017 A python project 11
1/5/2017 A python project 12
1/5/2017 A python project 13
Refrences
 https://wiki.python.org/moin/GuiProgramming
 Python gui programming cookbook By Burkhard-A-Meier
 Starting out with python by Tonny Gadis
 How to think like a computer scientist by Allen Downey, Jeffrey
Elkener

1/5/2017 A python project 14


1/5/2017 A python project 15

You might also like