-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjumble.py
109 lines (93 loc) · 2.28 KB
/
jumble.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from tkinter import *
from tkinter import messagebox
import random
real_word = [
"apple",
"ball",
"cat",
"dog",
"elephant",
"fish",
"girl",
"horse",
"ink",
"jug",
"kite",
"lion",
"mango",
"nose",
"orange",
"parrot",
"oueen",
"rain",
"sun",
"tiger",
"uniform",
"voilet",
"watch",
"x-ray",
"yellow",
"zebra"
]
jumbled_word = [
"palpe",
"lbal",
"atc",
"ogd",
"phaelent",
"ifsh",
"ligr",
"orshe",
"kni",
"ugj",
"tike",
"oiln",
"goman",
"seno",
"georan",
"rarpto",
"eqeun",
"iran",
"nus",
"rtgie",
"moufnir",
"tvloei",
"twcha",
"yra-x",
"lyloew",
"bzrae"
]
options = random.randrange(0, len(jumbled_word), 1)
def one():
global jumbled_word, real_word, options
lbl2.config(text=jumbled_word[options])
def answer():
global jumbled_word, real_word, options
options = random.randrange(0, len(jumbled_word), 1)
lbl1.config(text=jumbled_word[option])
e1.delete(0, END)
def correct():
global jumbled_word, real_word, options
one_var = e1.get()
if one_var == real_word[options]:
messagebox.showinfo("Hurray!! you got it right")
answer()
else:
messagebox.showinfo("Oops!! try better next time")
e1.delete(0, END)
window = Tk()
window.geometry("350x400")
window.title("jumble word game")
window.configure(background="fuchsia")
lbl2 = Label(window, text=jumbled_word[options], font=("Arial", 25), bg="blue", fg="white")
lbl2.pack(pady=30, ipady=10, ipadx=10)
lbl1 = Label(window, text="write here", font=("Arial", 25), bg="blue", fg="white")
lbl1.pack(pady=30, ipady=10, ipadx=10)
correct_1 = StringVar()
e1 = Entry(window, font=("Arial", 25, "bold"), textvariable=correct_1)
e1.pack(ipady=5, ipadx=5)
correct_button = Button(window, text="click", font=("Arial", 20, "bold"), width=20, bg="red", fg="white", relief=GROOVE, command=correct)
correct_button.pack(pady=40)
reset_button = Button(window, text="reset", font=("Arial", 20, "bold"), width=20, bg="purple", fg="white", relief=GROOVE, command=answer)
reset_button.pack()
window.mainloop()