Browse Source

refactoring: too long string-output

remotes/origin/feature/feature-read-math-functions
fdai7763 11 months ago
parent
commit
b16d5bd556
  1. 3
      src/main/py/read_math_function.py

3
src/main/py/read_math_function.py

@ -17,7 +17,8 @@ def read_math_function():
simplified = simplify_easy_math_function(type, function) simplified = simplify_easy_math_function(type, function)
if not simplified: if not simplified:
print( print(
"Die eingegebene Funktion war ungültig, entspricht nicht der vorgegebenen Syntax oder die Auswahl ist ungültig. Versuchen Sie es erneut.")
"Die eingegebene Funktion war ungültig, entspricht nicht der vorgegebenen Syntax"
"oder die Auswahl ist ungültig. Versuchen Sie es erneut.")
else: else:
return simplified return simplified
else: else:

Loading…
Cancel
Save