I keep getting a sytax error but i can not find it. It does not highlight the area where it is at. I am still new to programming and need a little help on this one. If you need to see the whole code it is Click Here.
user_input = input('To end this, type Quit: ')
if user_input.lower == 'quit':
elif user_input == '+':
num1 = float(input.isdigit('Enter your first number here: '))
except ValueError:
print('Not a number, please enter a number')
num2 = float(input.isdigit('Enter your second number here: '))
except ValueError:
print('Not a number, please enter a number')
total = num1 + num2
print('Your problem is:' + str(total) + '!')