-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneradorCodigo.py
102 lines (76 loc) · 2.4 KB
/
GeneradorCodigo.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
# Prints one letter UPPER part in Braile
def imprimirArriba(cadena):
forma1 = 'aehloruvz' # Forma *.
forma2 = 'cdmnpy' # Forma **
forma3 = 'ist' #Forma .*
resultado = ""
for letra in cadena:
if letra == ' ':
resultado += " "
if letra in forma1:
resultado += "*. "
if letra in forma2:
resultado += "** "
if letra in forma3:
resultado += ".* "
return resultado
# Prints one letter MIDDLE part in Braile
def imprimirMitad(cadena):
forma1 = 'ilsv' # Forma *.
forma2 = 'hqrt' # Forma **
forma3 = 'denoyz' # Forma .*
forma4 = 'acmu' # Forma ..
resultado = ""
for letra in cadena:
if letra == ' ':
resultado += " "
if letra in forma1:
resultado += "*. "
if letra in forma2:
resultado += "** "
if letra in forma3:
resultado += ".* "
if letra in forma4:
resultado += ".. "
return resultado
# Prints one letter LOWER part in Braile
def imprimirAbajo(cadena):
forma1 = 'lmnoqrst' # Forma *.
forma2 = 'uvyz' # Forma **
forma3 = 'acdehi' # Forma ..
resultado = ""
for letra in cadena:
if letra == ' ':
resultado += " "
if letra in forma1:
resultado += "*. "
if letra in forma2:
resultado += "** "
if letra in forma3:
resultado += ".. "
return resultado
# Uploads the list of roman numbers
file = open('romanos.txt', 'r')
listaRomanosFea = file.readlines()
file.close()
listaRomanos = []
for e in listaRomanosFea:
listaRomanos.append(e.strip())
# Uploads the list of numbers in words
file = open('palabras_numeros.txt', 'r')
listaRomanosFea = file.readlines()
file.close()
listaNumerosPal = []
for e in listaRomanosFea:
listaNumerosPal.append(e.strip())
print(listaRomanos)
print(listaNumerosPal)
#Creates the code of if, according to wich roman numeral is created, what number in words must return
i = 0
for roman in listaRomanos:
print("if entrada == '" + roman + "':")
print(" print('" + imprimirArriba(listaNumerosPal[i]) + "')")
print(" print('" + imprimirMitad(listaNumerosPal[i]) + "')")
print(" print('" + imprimirAbajo(listaNumerosPal[i]) + "')")
print("")
i += 1