Skip to content

Commit bc3fd39

Browse files
authored
Update calculator.py
Prioritized lowering the input
1 parent 76725dc commit bc3fd39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

calculator.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ def calc(term):
3737
purpose: This function is the actual calculator and the heart of the application
3838
"""
3939

40+
# This part is for reading and converting function expressions.
41+
term = term.lower()
42+
4043
# This part is for reading and converting arithmetic terms.
4144
term = term.replace(" ", "")
4245
term = term.replace("^", "**")
@@ -61,9 +64,6 @@ def calc(term):
6164
"e",
6265
]
6366

64-
# This part is for reading and converting function expressions.
65-
term = term.lower()
66-
6767
for func in functions:
6868
if func in term:
6969
withmath = "math." + func

0 commit comments

Comments
 (0)