-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.py
51 lines (39 loc) · 1.31 KB
/
helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from custom_errors import (
UnsupportedOperand,
IncorrectVariable,
DivisionByZero,
EmptyInput,
)
CORRECT_INPUT_PROMPT = 'Please enter a valid function of "x". \nsupported operands are + - / * ^ \nex: x^2 + 2*x + 1'
allowed_operands = {"+", "-", " ", "/", "*", "^", "(", ")"}
def check_operands(user_input):
"""
Checks if the operands are valid "in the allowed set of operands" and raises an error if not
Parameters
----------
user_input : str
user input to be checked
"""
if user_input == "":
raise EmptyInput(CORRECT_INPUT_PROMPT)
user_input = user_input.replace(" ", "")
for operand in user_input:
if operand != "x" and not operand.isdigit() and operand not in allowed_operands:
raise UnsupportedOperand(
f"Operand {operand} is not allowed\n{CORRECT_INPUT_PROMPT}"
)
def parse_input(user_input):
"""
Parses the user input to be evaluated by the function plotter and returns the parsed input
Parameters
----------
user_input : str
user input to be parsed
Returns
-------
str
parsed user input
"""
user_input = user_input.replace(" ", "")
check_operands(user_input)
return "".join([operand if operand != "^" else "**" for operand in user_input])