We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76725dc commit bc3fd39Copy full SHA for bc3fd39
calculator.py
@@ -37,6 +37,9 @@ def calc(term):
37
purpose: This function is the actual calculator and the heart of the application
38
"""
39
40
+ # This part is for reading and converting function expressions.
41
+ term = term.lower()
42
+
43
# This part is for reading and converting arithmetic terms.
44
term = term.replace(" ", "")
45
term = term.replace("^", "**")
@@ -61,9 +64,6 @@ def calc(term):
61
64
"e",
62
65
]
63
66
- # This part is for reading and converting function expressions.
- term = term.lower()
-
67
for func in functions:
68
if func in term:
69
withmath = "math." + func
0 commit comments