Skip to content

Commit

Permalink
Python - Curso V2 - Ejercicio 6.6
Browse files Browse the repository at this point in the history
Python Curso V2: 169 Ejercicio 6.6 Linealización de Expresiones Algebraicas a Expresiones Algorítmicas.
  • Loading branch information
Fhernd committed Mar 16, 2020
1 parent b1649ef commit 02494ea
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions parte06/ex6.6_linealizacion_expresiones_algebraicas.py
@@ -0,0 +1,18 @@
# Ejercicio 6. Convertir expresiones algebraicas a expresiones programáticas.

a = 1
b = 2
c = 3
d = 16

resultado = a / (b*c) / d**(1/2)**3

print('Resultado:', resultado)

print()

e = 7

resultado = (a**3)**2 - b*c/(d*e)

print('Resultado:', resultado)

0 comments on commit 02494ea

Please sign in to comment.