import re class Token: OPERAND_ADDITION = "+" OPERAND_MULTIPLICATION = "*" NUMBER = re.compile(r'\d+') #CHANGER