-
Notifications
You must be signed in to change notification settings - Fork 1
/
createvocab.py
122 lines (118 loc) · 3.72 KB
/
createvocab.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
110
111
112
113
114
115
116
117
118
119
120
121
#Create dict of vocab words
vocab = {
"abre (command)": "open",
"acostarse (ue)": "to go to bed, to lie down",
"acostumbrarse": "to get used to",
"afeitarse": "to shave",
"almorzar (ue)": "to have lunch, to eat lunch",
"aquel, aquella (aquellos, aquellas)": "that (one) (those [ones])",
"aquello": "that",
"así": "thus, that way",
"bañarse": "to bathe",
"la boca": "mouth",
"broncearse": "to tan",
"caerse": "to fall (down)",
"calmarse": "to calm down",
"la cara": "face",
"la cena": "dinner, supper",
"cenar": "to have dinner, to have supper",
"cepillarse": "to brush",
"el cepillo": "brush",
"el champú": "shampoo",
"la cita": "appointment; date",
"el codo": "elbow",
"comerse": "to eat up",
"la comida": "midday meal",
"la comida rápida": "fast food",
"el corazón": "heart",
"la crema de afeitar": "shaving cream",
"el cuello": "neck",
"el cuerpo": "body",
"cuidarse": "to take care of yourself",
"dejar de": "to stop, to quit",
"derecho, derecha": "right",
"desayunar": "to have breakfast",
"el desayuno": "breakfast",
"descansar": "to rest, to relax",
"desde luego": "of course",
"el desodorante": "deodorant",
"despedirse (i, i)": "to say goodbye",
"despertarse (ie)": "to wake up",
"di (command)": "say",
"el diente": "tooth",
"divertirse (ie, i)": "to have fun",
"el doctor, la doctora": "doctor",
"doler (ue)": "to hurt",
"dormirse (ue, u)": "to fall asleep",
"la ducha": "shower",
"ducharse": "to shower",
"el ejercicio": "exercise",
"el enfermero, la enfermera": "nurse",
"equivocarse": "to be mistaken",
"ese, esa (esos, esas)": "that (one) (those [ones])",
"eso": "that (neuter form)",
"la espalda": "back",
"el espejo": "mirror",
"esperar": "to wait (for)",
"este, esta (estos, estas)": "this (one) (these [ones])",
"esto": "this (neuter form)",
"el estómago": "stomach",
"fumar": "to smoke",
"la garganta": "throat",
"el grifo": "faucet",
"la gripe": "flu",
"la guitarra": "guitar",
"el hombro": "shoulder",
"el inodoro": "toilet",
"irse": "to leave, to go away",
"izquierdo, izquierda": "left",
"el jabón": "soap",
"el lago": "lake",
"el lavabo": "sink",
"lavarse": "to wash",
"la lengua": "tongue",
"levantarse": "to get up",
"llamarse": "to be called",
"llevarse": "to get along",
"el maquillaje": "makeup",
"maquillarse": "to put on makeup",
"la medicina": "medicine",
"la nariz (pl. las narices)": "nose",
"el niño, la niña": "child",
"el oído (inner)": "ear",
"el ojo": "eye",
"olvidarse": "to forget",
"la oreja (outer)": "ear",
"el pecho": "chest",
"peinarse": "to comb",
"el peine": "comb",
"el pelo": "hair",
"pescar": "to fish",
"pescar un resfriado": "to catch a cold",
"el pez (pl. los peces)": "fish",
"ponerse": "to put on",
"preguntarse": "to wonder; to ask oneself",
"preocuparse": "to worry",
"quedarse": "to remain, to stay",
"quemarse": "to get burned",
"quitarse": "to take off",
"el resfriado": "cold",
"reunirse": "to get together",
"la rodilla": "knee",
"saca (command)": "stick out",
"la salud": "health",
"sentarse (ie)": "to sit down",
"sentirse (ie, i)": "to feel",
"siéntate (command)": "sit down",
"tarde": "late",
"la tina": "bathtub",
"la toalla": "towel",
"tócate (command)": "touch",
"vestirse (i, i)": "to get dressed"
}
def isStemChanging():
for word in vocab:
if "(ie)" in word or "(i)" in word or "(ue)" in word:
print(f"{word}: yes")
else:
print(f"{word}: no")