-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdictionary_app.py
43 lines (43 loc) · 1.1 KB
/
dictionary_app.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
from shutil import get_terminal_size
from time import sleep
score=0
dic={
"Humpty":"Dumpty",
"King":"Queen",
"Cinderella": "Prince Charming",
"Cat": "Mouse",
"Tom": "Jerry",
"Rock": "Roll",
"Bow": "Arrow",
"Lock": "Key",
"Surf": "Turf",
"Pancakes": "Syrup",
"Fork": "Knife",
"Milk": "Cookies",
"Rhythm": "Blues",
"Mickey": "Minnie",
"Salt": "Pepper",
"Copy": "Paste",
"Games": "Fun",
"Python": "More Fun",
"Errors": "Debug",
}
print("Hey! Let's play a game :)")
print("So here are the rules!")
print("Try to remember as many pairs as you can, you have got 20 seconds to memorise! "
"Let's see how much you score ;)")
for key,value in dic.items():
print(key+":"+value,end=" || ",flush=True)
sleep(1)
sleep(1)
print("\n" * get_terminal_size().lines, end='')
print("Let's test your Memory now!")
sleep(1)
for key in dic.keys():
ans=input(key+": ").title()
if ans==dic[key]:
score+=1
print("Correct!")
else:
print("Wrong! The correct answer is",dic[key])
print("Great! Your Final score is",score,"/",len(dic))