Skip to content

Commit

Permalink
Corrección de un pequeño error en la generación de las constantes par…
Browse files Browse the repository at this point in the history
…a sumar y restar

Creación de OPERADORES combinando las otras tuplas
  • Loading branch information
dcsibon committed Nov 14, 2024
1 parent 7c61479 commit fd4ddbd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions otros/calculadora_solucion.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"Se produjo un error: {error}"
)

# Operadores soportados por la calculadora
OPERADORES = ('+', '-', 'x', '*', '/', ':', '**', 'exp')

# No era necesario realizar estas constantes, pero os la propongo en mi solución
OPERADORES_SUMAR = ('+')
OPERADORES_RESTAR = ('-')
# Operadores soportados por cada operación
OPERADORES_SUMAR = ('+',)
OPERADORES_RESTAR = ('-',)
OPERADORES_MULTIPLICAR = ('x', '*')
OPERADORES_DIVIDIR = ('/', ':')
OPERADORES_POTENCIA = ('**', 'exp')

# Operadores soportados por la calculadora
OPERADORES = OPERADORES_SUMAR + OPERADORES_RESTAR + OPERADORES_MULTIPLICAR + OPERADORES_DIVIDIR + OPERADORES_POTENCIA



def limpiar_pantalla():
Expand Down

0 comments on commit fd4ddbd

Please sign in to comment.