Skip to content

Commit d3b8327

Browse files
committed
Added Odd Symbol Find Game in Pygames Script
1 parent d85f9dd commit d3b8327

File tree

16 files changed

+2382
-0
lines changed

16 files changed

+2382
-0
lines changed

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/1.jpg

165 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/10.jpg

99.5 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/2.jpg

171 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/3.jpg

97.4 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/4.jpg

98.3 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/5.jpg

114 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/6.jpg

106 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/7.jpg

157 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/8.jpg

191 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/Images/9.jpg

97.5 KB
Loading
245 KB
Loading
13 MB
Loading
36.8 KB
Loading

Diff for: PyGamesScripts/Odd Symbol Find Game/README.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# ✔ ODD SYMBOL FIND GAME
2+
- ### An "Odd Stmbol Find Game" is a game created in python with tkinter gui.
3+
- ### In this game player will be given 5 Levels.
4+
- ### For each level Player need to first click on that level button and find the position of odd symbol(one which is different from all other) in the given level board.
5+
- ### The points each level will be shown at the top right corner.
6+
- ### At last, final score will be shown along with count of correct and wrong answer.
7+
8+
****
9+
10+
# REQUIREMENTS :
11+
- ### python 3
12+
- ### tkinter module
13+
- ### from tkinter messagebox module
14+
15+
****
16+
17+
# How this Script works :
18+
- ### User just need to download the file and run the odd_symbol_find_game.py on their local system.
19+
- ### Now on the main window of the game, the player can see start playing the game using START button.
20+
- ### Before starting player should see the rules for this game by clicking on RULES button.
21+
- ### And after that player can start playing and see the score at the last.
22+
- ### Also there is an exit button, clicking on which exit dialog box appears asking for the permission of the user for closing the window.
23+
24+
# Purpose :
25+
- ### The basic purpose of this game is to check how good is the eyesight of the player, as it is game of finding odd ones from bunch of symbols.
26+
27+
# Compilation Steps :
28+
- ### Install tkinter, pandas
29+
- ### After that download the code file, and run odd_symbol_find_game.py on local system.
30+
- ### Then the game will start running and you can play the game and watch the final score at last.
31+
32+
# SCREENSHOTS :
33+
34+
****
35+
36+
<p align="center">
37+
<img width = 1000 src="Images/1.jpg" /><br>
38+
<img width = 1000 src="Images/2.jpg" /><br>
39+
<img width = 1000 src="Images/3.jpg" /><br>
40+
<img width = 1000 src="Images/4.jpg" /><br>
41+
<img width = 1000 src="Images/5.jpg" /><br>
42+
<img width = 1000 src="Images/6.jpg" /><br>
43+
<img width = 1000 src="Images/7.jpg" /><br>
44+
<img width = 1000 src="Images/8.jpg" /><br>
45+
<img width = 1000 src="Images/9.jpg" /><br>
46+
<img width = 1000 src="Images/10.jpg" /><br>
47+
</p>
48+
49+
****
50+
51+
# Below is link to video of how game is to be played :
52+
<p align="center">
53+
<img src="Images/sample_video.gif" /><br>
54+
</p>
55+

Diff for: PyGamesScripts/Odd Symbol Find Game/odd_symbol_find_game.py

+2,325
Large diffs are not rendered by default.

Diff for: PyGamesScripts/Odd Symbol Find Game/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
libraries used : tkinter
2+
messagebox

0 commit comments

Comments
 (0)