-
Notifications
You must be signed in to change notification settings - Fork 0
/
0-word-families-practice.py
74 lines (72 loc) · 2.73 KB
/
0-word-families-practice.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
import os
import random
exercises = [
{
"word": "succeed",
"question": "Practice and patience are the keys to ______.",
"answer": "success (noun)",
"final": "Practice and patience are the keys to success."
},
{
"word": "rely",
"question": "My best friend never lets me down. I ______ on her all the time.",
"answer": "rely (verb)",
"final": "My best friend never lets me down. I rely on her all the time."
},
{
"word": "differ",
"question": "I can't see what's ______ in the second version of this document.",
"answer": "different (adjective)",
"final": "I can't see what's different in the second version of this document."
},
{
"word": "act",
"question": "______ speak louder than words.",
"answer": "actions (noun)",
"final": "Actions speak louder than words."
},
{
"word": "apologize",
"question": "After tripping me on my way to my desk yesterday, my coworker ______ profusely.",
"answer": "apologized (verb)",
"final": "After tripping me on my way to my desk yesterday, my coworker apologized profusely."
},
{
"word": "identify",
"question": "Please show me your ______ and your insurance papers.",
"answer": "identification (noun)",
"final": "Please show me your identification and your insurance papers."
},
{
"word": "understand",
"question": "He was ______ upset when he heard about the accident.",
"answer": "understandably (adverb)",
"final": "He was understandably upset when he heard about the accident."
},
{
"word": "divide",
"question": "There were so many ______ issues that they called a mediator in.",
"answer": "divisive (adjective)",
"final": "There were so many divisive issues that they called a mediator in."
},
{
"word": "decide",
"question": "Because the manager reacted ______, the problem didn't spiral out of control.",
"answer": "decisively (adverb)",
"final": "Because the manager reacted decisively , the problem didn't spiral out of control."
},
{
"word": "benefit",
"question": "This document was a ______ resource for the project.",
"answer": "beneficial (adjective)",
"final": "This document was a beneficial resource for the project."
}
]
for exercise in exercises:
os.system('clear')
print(f'PROMPT: {exercise["question"]}')
print(f'EXERCISE: Complete the sentence using a word in the \"{exercise["word"]}\" word family.')
input('')
print(f'ANSWER: {exercise["answer"]}')
print(f'FINAL: {exercise["final"]}\n')
input('')