Browse Source

added else case for no 'x' in function for difference_of_simplified_exponential_functions

master
fd7794 11 months ago
parent
commit
32f44b5489
  1. 4
      src/main/py/read_math_function.py

4
src/main/py/read_math_function.py

@ -130,4 +130,6 @@ def difference_of_simplified_exponential_functions(type, function):
new_subtrahend = simplify_exponential_function('e', subtrahend)
if new_minuend != "Der Ausdruck muss die Variable 'x' enthalten." and new_subtrahend != "Der Ausdruck muss die Variable 'x' enthalten.":
simplified = new_minuend - new_subtrahend
return simplified
return simplified
else:
return "Der Ausdruck muss die Variable 'x' enthalten."
Loading…
Cancel
Save