-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathColor_guess.py
61 lines (45 loc) · 1.37 KB
/
Color_guess.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
import random
import tkinter
colors_name = ['Red', 'White', 'Yellow', 'Pink',
'Blue', 'Black', 'Brown', 'Purple', 'Green', 'Cyan']
score = 0
time_left = 60
def start_game(play):
if time_left == 60:
countdown()
change_color()
def change_color():
global score
global time_left
if (time_left > 0):
e.focus_set()
if e.get().lower() == colors_name[1].lower():
score += 1
e.delete(0, tkinter.END)
random.shuffle(colors_name)
label.config(fg=str(colors_name[1]), text=str(colors_name[0]))
scoreLabel.config(text="Score: "+str(score))
def countdown():
global time_left
if time_left > 0:
time_left -= 1
timeLabel.config(text='Time Left: '+str(time_left))
timeLabel.after(1000, countdown)
root = tkinter.Tk()
root.title("The ColorGuess")
root.geometry("600x400")
instruct = tkinter.Label(root, text="Which Color?", font=("san-serif", 30))
instruct.pack()
scoreLabel = tkinter.Label(
root, text="Press Enter to Start", font=("san-serif", 24))
scoreLabel.pack()
timeLabel = tkinter.Label(root, text="Time Left: " +
str(time_left), font=("san-serif", 18))
timeLabel.pack()
label = tkinter.Label(root, font=("san-serif", 60))
label.pack()
e = tkinter.Entry(root)
root.bind('<Return>', start_game)
e.pack()
e.focus_set()
root.mainloop()