-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabelaSimbolos.py
40 lines (35 loc) · 1.12 KB
/
TabelaSimbolos.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
class TabelaSimbolos:
tabela = {}
# Verifica se símbolo já está na tabela
def inTabela(self, simbolo):
for i in self.tabela:
if i == simbolo:
return True
else:
pass
return False
# Insere símbolo na tabela, se ele não estiver lá, e atualiza, caso esteja
def insertOrUpdate(self, **attributes):
for i in self.tabela:
if i == attributes['simbolo']:
attributes.pop('simbolo')
for j in attributes:
self.tabela[i][j] = attributes[j]
return
else:
pass
simbolo_novo = attributes['simbolo']
self.tabela[simbolo_novo] = {}
attributes.pop('simbolo')
for j in attributes:
self.tabela[simbolo_novo][j] = attributes[j]
return
def getTabela(self):
return self.tabela
def __str__(self):
return self.tabela
def getTipoSim(self, simbolo):
try:
return self.tabela[simbolo]['tipoSim']
except:
return 'Interno'