-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHangman_extras.py
More file actions
86 lines (83 loc) · 2.92 KB
/
Hangman_extras.py
File metadata and controls
86 lines (83 loc) · 2.92 KB
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
dict_easy = {
'germany': 'Germany is a Western European country with a population of about 83 million people. Its capital is Berlin.',
'france': 'France is a Western European country with a population of about 67 million people. Its capital is Paris',
'england': 'England is a country that is part of the United Kingdom with a population of about 56 million people. Its capital is London',
'spain': 'Spain is a southwestern European country with a population of about 47 million people. Its capital is Madrid',
'greece': 'Greece is a southeastern European country with a population of about 10.7 million people. Its capital is Athens',
'afghanistan': 'Afghanistan is a landlocked country at the crossroads of Central and South Asia with a population of about 37.2 million people. Its capital is Kabul.',
'cameroon': 'Cameroon is a Central African country on the Gulf of Guinea with a population of about 25.2 million people. Its capital is Yaounde.',
'guatemala': 'Guatemala is a Central American country south of Mexico with a population of about 17.2 million people. Its capital is Guatemala City.',
'micronesia': 'Micronesia is a country spread across the western Pacific Ocean comprising more than 600 islands with a population of about 112 000 people. Its capital is Palikir.',
}
dict_medium = {
'headphone': 'An electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear.',
'newspaper': 'A daily or weekly publication on folded sheets.',
'toothbrush': 'A small brush; has long handle; used to clean teeth.',
'sunscreen': 'A cream spread on the skin.',
'painkiller': 'A medicine used to relieve pain.',
'umbrella': 'A lightweight handheld collapsible canopy.',
'dictionary': 'A reference book containing an alphabetical list of words.',
'postcard': 'A card for sending messages by post without an envelope.',
'lipstick': 'A makeup that is used to color the lips.',
}
dict_hard = {
'jasperated': 'mottled; streaked with various colours',
'enoptromancy': 'divination using mirrors',
'receptacular': 'serving as a receptacle',
'ulmaceous': 'of or like elms',
'nidifugous': 'leaving the nest soon after hatching',
'quittance': 'release from a debt or obligation; a document expressing such a release',
'hippiatric': 'of, like or pertaining to the treatment of horses\' diseases',
'geoponics': 'study of agriculture',
'olecranon': 'funny bone',
}
hangstatus = ['''
+---+
| |
|
|
|
|
=========''', '''
+---+
| |
O |
|
|
|
=========''', '''
+---+
| |
O |
| |
|
|
=========''', '''
+---+
| |
O |
/| |
|
|
=========''', '''
+---+
| |
O |
/|\ |
|
|
=========''', '''
+---+
| |
O |
/|\ |
/ |
|
=========''', '''
+---+
| |
O |
/|\ |
/ \ |
|
=========''']