Exemple #1
0
 def interpretar(self):
     aux2 = tabela.get(self.var2)
     aux3 = tabela.get(self.var3)
     if aux2:
         self.var2 = aux2
     if aux3:
         self.var3 = aux3
     adicionar(self.var1, self.calcular())
Exemple #2
0
 def interpretar(self):
     aux2 = tabela.get(self.var2)
     aux3 = tabela.get(self.var3)
     aux4 = tabela.get(self.var4)
     if aux2:
         self.var2 = aux2
     if aux3:
         self.var3 = aux3
     if aux4:
         self.var4 = aux4
     adicionar(self.var1, [self.var2, self.var3, self.var4])
Exemple #3
0
 def interpretar(self):
     aux2 = tabela.get(self.var2)
     aux3 = tabela.get(self.var3)
     aux4 = tabela.get(self.var4)
     aux5 = tabela.get(self.var5)
     if aux2:
         self.var2 = aux2
     if aux3:
         self.var3 = aux3
     if aux4:
         self.var4 = aux4
     if aux5:
         self.var5 = aux5
     adicionar(self.var1, self.calcular())
Exemple #4
0
 def interpretar(self):
     aux = tabela.get(self.var2)
     if aux:
         adicionar(self.var1, aux)
     else:
         adicionar(self.var1, self.var2)