-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumberToLcd.py
203 lines (169 loc) · 4.81 KB
/
numberToLcd.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# Copyright(c) 2012 DevIsland.
# http://www.facebook.com/DevIsland
#
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE":
# DevIsland members wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy us a beer in return.
# ----------------------------------------------------------------------------
import unittest
def numberToLcd(num):
dicionario = {
0 : [" - ",
"| |",
" ",
"| |",
" - "],
1 : [" ",
" | ",
" ",
" | ",
" "],
2 : [" - ",
" |",
" - ",
"| ",
" - "],
3 : [" - ",
" |",
" - ",
" |",
" - "],
4 : [" ",
"| |",
" - ",
" |",
" "],
5 : [" - ",
"| ",
" - ",
" |",
" - "],
6 : [" - ",
"| ",
" - ",
"| |",
" - "],
7 : [" - ",
" |",
" ",
" |",
" "],
8 : [" - ",
"| |",
" - ",
"| |",
" - "],
9 : [" - ",
"| |",
" - ",
" |",
" - "]
}
linha1 = ""
linha2 = ""
linha3 = ""
linha4 = ""
linha5 = ""
for caracter in str(num):
numero_atual = int(caracter)
linha1 = linha1 + dicionario[numero_atual][0]
linha2 = linha2 + dicionario[numero_atual][1]
linha3 = linha3 + dicionario[numero_atual][2]
linha4 = linha4 + dicionario[numero_atual][3]
linha5 = linha5 + dicionario[numero_atual][4]
return [linha1, linha2, linha3, linha4, linha5]
class TestNumberToLcd(unittest.TestCase):
def testDeveExibirONumeroZeroCorretamente(self):
zero = [" - ",
"| |",
" ",
"| |",
" - "]
assert numberToLcd(0) == zero
def testDeveExibirONumeroUmCorretamente(self):
um = [" ",
" | ",
" ",
" | ",
" "]
assert numberToLcd(1) == um
def testDeveExibirONumeroDoisCorretamente(self):
dois = [" - ",
" |",
" - ",
"| ",
" - "]
assert numberToLcd(2) == dois
def testDeveExibirONumeroTresCorretamente(self):
tres = [" - ",
" |",
" - ",
" |",
" - "]
assert numberToLcd(3) == tres
def testDeveExibirONumeroQuatroCorretamente(self):
quatro = [" ",
"| |",
" - ",
" |",
" "]
assert numberToLcd(4) == quatro
def testDeveExibirONumeroCincoCorretamente(self):
cinco = [" - ",
"| ",
" - ",
" |",
" - "]
assert numberToLcd(5) == cinco
def testDeveExibirONumeroSeisCorretamente(self):
seis = [" - ",
"| ",
" - ",
"| |",
" - "]
assert numberToLcd(6) == seis
def testDeveExibirONumeroSeteCorretamente(self):
sete = [" - ",
" |",
" ",
" |",
" "]
assert numberToLcd(7) == sete
def testDeveExibirONumeroOitoCorretamente(self):
oito = [" - ",
"| |",
" - ",
"| |",
" - "]
assert numberToLcd(8) == oito
def testDeveExibirONumeroNoveCorretamente(self):
nove = [" - ",
"| |",
" - ",
" |",
" - "]
assert numberToLcd(9) == nove
def testDeveExibirONumeroDezCorretamente(self):
dez = [" - ",
" | | |",
" ",
" | | |",
" - "]
assert numberToLcd(10) == dez
def testDeveExibirONumeroQuinzeCorretamente(self):
quinze = [" - ",
" | | ",
" - ",
" | |",
" - "]
assert numberToLcd(15) == quinze
def testDeveExibirONumeroDaBest(self):
besta = [" - - - ",
"| | | ",
" - - - ",
"| || || |",
" - - - "]
if __name__ == '__main__':
unittest.main()