Advertisement
Nonplussed

MathExpression.py

Dec 11th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.82 KB | None | 0 0
  1.  
  2. import decimal
  3.  
  4. import MathOperations
  5.  
  6.  
  7. class MathExpression:
  8.  
  9.     evaluated_decimal = None
  10.  
  11.     leftside_decimal = None
  12.     operation_string = None
  13.     rightside_expression = None
  14.  
  15.     def __init__(self, math_expression_string):
  16.         """Parsing the math_expression_string"""
  17.  
  18.         # Set self.leftside_decimal
  19.         leftside_decimal_parsed_string = parse_for_leftside_decimal_string(math_expression_string)
  20.         try:
  21.             self.leftside_decimal = decimal.Decimal(leftside_decimal_parsed_string)
  22.         except decimal.InvalidOperation:
  23.             raise InvalidMathExpressionException
  24.  
  25.         # Check if there's an operation after the leftside_decimal
  26.         operation_check_result, operation_end_index = check_for_operation(math_expression_string, len(leftside_decimal_parsed_string))
  27.         if operation_check_result is None:
  28.             self.evaluated_decimal = self.leftside_decimal
  29.             return
  30.         self.operation_string = operation_check_result
  31.  
  32.         # Set self.rightside_expression
  33.         self.rightside_expression = MathExpression(math_expression_string[operation_end_index:])
  34.  
  35.         # Finalization of this MathExpression object
  36.         self.evaluated_decimal = MathOperations.compute_operation(
  37.             self.leftside_decimal,
  38.             self.operation_string,
  39.             self.rightside_expression.evaluated_decimal,
  40.         )
  41.  
  42.  
  43. def parse_for_leftside_decimal_string(math_expression_string):
  44.     end_index = 0
  45.     encountered_nonspace_character_previously = False
  46.  
  47.     while not end_index == len(math_expression_string):
  48.         char = math_expression_string[end_index]
  49.         if char not in ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '.', ' ']:
  50.             break
  51.  
  52.         if char == '-':
  53.             if encountered_nonspace_character_previously:
  54.                 break
  55.  
  56.         if not char == ' ':
  57.             encountered_nonspace_character_previously = True
  58.  
  59.         end_index += 1
  60.  
  61.     return math_expression_string[0:end_index]
  62.  
  63.  
  64. def check_for_operation(math_expression_string, start_index):
  65.     parsed_string = ''
  66.  
  67.     end_index = start_index
  68.     while not end_index == len(math_expression_string):
  69.         char = math_expression_string[end_index]
  70.  
  71.         if char.isdigit() or char == '.':
  72.             break
  73.  
  74.         if not char == ' ':
  75.             parsed_string += char
  76.         if char == ' ' and not parsed_string == '':
  77.             break
  78.         end_index += 1
  79.  
  80.     if parsed_string == '':
  81.         return None, None
  82.     else:
  83.         if MathOperations.string_represents_math_operation(parsed_string):
  84.             return parsed_string, end_index
  85.         else:
  86.             print('String doesnt represent operation!')
  87.             raise InvalidMathExpressionException
  88.  
  89.  
  90. class InvalidMathExpressionException(Exception):
  91.     pass
  92.  
  93.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement